rust/src/test/ui/error-codes/E0207.stderr

10 lines
323 B
Plaintext
Raw Normal View History

2018-02-08 03:35:35 +00:00
error[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predicates
--> $DIR/E0207.rs:13:6
|
2018-02-23 00:42:32 +00:00
LL | impl<T: Default> Foo { //~ ERROR E0207
2018-02-08 03:35:35 +00:00
| ^ unconstrained type parameter
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0207`.