mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
22 lines
691 B
Plaintext
22 lines
691 B
Plaintext
error[E0412]: cannot find type `A` in this scope
|
|
--> $DIR/binder-defaults-118697.rs:4:22
|
|
|
|
|
LL | type T = dyn for<V = A(&())> Fn(());
|
|
| ^ not found in this scope
|
|
|
|
error: defaults for generic parameters are not allowed in `for<...>` binders
|
|
--> $DIR/binder-defaults-118697.rs:4:18
|
|
|
|
|
LL | type T = dyn for<V = A(&())> Fn(());
|
|
| ^^^^^^^^^^
|
|
|
|
error: late-bound type parameter not allowed on trait object types
|
|
--> $DIR/binder-defaults-118697.rs:4:18
|
|
|
|
|
LL | type T = dyn for<V = A(&())> Fn(());
|
|
| ^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0412`.
|