2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-09-03 03:36:01 -05:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:16:5
|
|
|
|
|
|
|
|
|
LL | const N: usize;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-09-03 03:36:01 -05:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:22:5
|
|
|
|
|
|
|
|
|
LL | type Output;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-09-03 03:36:01 -05:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:28:5
|
|
|
|
|
|
|
|
|
LL | fn foo();
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-09-03 03:36:01 -05:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:34:5
|
|
|
|
|
|
|
|
|
LL | const N: usize = 43;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-09-03 03:36:01 -05:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:40:5
|
|
|
|
|
|
|
|
|
LL | type Output = ();
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-09-03 03:36:01 -05:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:46:5
|
|
|
|
|
|
|
|
|
LL | fn foo() {}
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0714`.
|