mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
10 lines
315 B
Rust
10 lines
315 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(non_lifetime_binders)]
|
|
|
|
type T = dyn for<V = A(&())> Fn(());
|
|
//~^ ERROR defaults for generic parameters are not allowed in `for<...>` binders
|
|
//~| ERROR cannot find type `A` in this scope
|
|
//~| ERROR late-bound type parameter not allowed on trait object types
|
|
|
|
fn main() {}
|