blob: 790e306f121b4f98c37781eea6ca91678bc7b224 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0437]: type `Bar` is not a member of trait `Foo`
--> $DIR/E0437.rs:14:5
|
LL | type Bar = bool; //~ ERROR E0437
| ^^^^^^^^^^^^^^^^ not a member of trait `Foo`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0437`.
|