2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:6:5
|
2018-09-03 03:36:01 -05:00
|
|
|
|
|
|
|
|
LL | const N: usize;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:12:5
|
2018-09-03 03:36:01 -05:00
|
|
|
|
|
|
|
|
LL | type Output;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:18:5
|
2018-09-03 03:36:01 -05:00
|
|
|
|
|
|
|
|
LL | fn foo();
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:24:5
|
2018-09-03 03:36:01 -05:00
|
|
|
|
|
|
|
|
LL | const N: usize = 43;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:30:5
|
2018-09-03 03:36:01 -05:00
|
|
|
|
|
|
|
|
LL | type Output = ();
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-09-03 04:17:20 -05:00
|
|
|
error[E0714]: marker traits cannot have associated items
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/marker-trait-with-associated-items.rs:36:5
|
2018-09-03 03:36:01 -05:00
|
|
|
|
|
|
|
|
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`.
|