rust/src/test/ui/span/visibility-ty-params.stderr

21 lines
427 B
Plaintext
Raw Normal View History

2017-08-21 21:54:03 +00:00
error: unexpected generic arguments in path
2018-12-25 15:56:47 +00:00
--> $DIR/visibility-ty-params.rs:6:5
|
2019-03-09 12:03:44 +00:00
LL | m!{ S<u8> }
2017-08-21 21:54:03 +00:00
| ^^^^^
error[E0577]: expected module, found struct `S`
--> $DIR/visibility-ty-params.rs:6:5
|
LL | m!{ S<u8> }
| ^^^^^ not a module
2017-08-21 21:54:03 +00:00
error: unexpected generic arguments in path
2018-12-27 00:07:00 +00:00
--> $DIR/visibility-ty-params.rs:10:9
2017-08-17 09:03:59 +00:00
|
2019-03-09 12:03:44 +00:00
LL | m!{ m<> }
2017-08-21 21:54:03 +00:00
| ^^^
2017-08-17 09:03:59 +00:00
error: aborting due to 3 previous errors