summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0207.stderr
blob: c82859a9867e6f6e1028e2ed2260bea8920b0726 (plain)
1
2
3
4
5
6
7
8
9
error[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predicates
  --> $DIR/E0207.rs:3:6
   |
LL | impl<T: Default> Foo { //~ ERROR E0207
   |      ^ unconstrained type parameter

error: aborting due to previous error

For more information about this error, try `rustc --explain E0207`.