mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 20:37:10 +00:00
7 lines
169 B
Rust
7 lines
169 B
Rust
fn f<T: ?for<'a> Sized>() {}
|
|
//~^ ERROR `for<...>` binder should be placed before trait bound modifiers
|
|
|
|
fn main() {}
|
|
|
|
// https://github.com/rust-lang/rust/issues/39089
|