blob: dd90dd1b06fe2e6c94679d240d049c29aa114345 [file] [log] [blame]
error: at least one trait must be specified
--> $DIR/generic_underconstrained.rs:6:40
|
LL | type Underconstrained<T: Trait> = impl 'static;
| ^^^^^^^
error[E0277]: the trait bound `T: Trait` is not satisfied
--> $DIR/generic_underconstrained.rs:6:1
|
LL | type Underconstrained<T: Trait> = impl 'static;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `T`
|
= help: consider adding a `where T: Trait` bound
= note: the return type of a function must have a statically known size
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.