rust/tests/ui/traits/non_lifetime_binders/binder-defaults-118697.stderr
2024-01-01 21:58:25 +01:00

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`.