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

24 lines
690 B
Plaintext
Raw Normal View History

2017-08-21 16:54:03 -05:00
error: unexpected generic arguments in path
2018-12-25 09:56:47 -06:00
--> $DIR/visibility-ty-params.rs:6:5
|
2018-02-22 18:42:32 -06:00
LL | m!{ S<u8> } //~ ERROR unexpected generic arguments in path
2017-08-21 16:54:03 -05:00
| ^^^^^
2017-08-21 16:54:03 -05:00
error: unexpected generic arguments in path
2018-12-26 18:07:00 -06:00
--> $DIR/visibility-ty-params.rs:10:9
2017-08-17 04:03:59 -05:00
|
2018-02-22 18:42:32 -06:00
LL | m!{ m<> } //~ ERROR unexpected generic arguments in path
2017-08-21 16:54:03 -05:00
| ^^^
2017-08-17 04:03:59 -05:00
error[E0577]: expected module, found struct `S`
2018-12-26 18:07:00 -06:00
--> $DIR/visibility-ty-params.rs:6:5
|
LL | m!{ S<u8> } //~ ERROR unexpected generic arguments in path
| -^^^^
| |
| help: a module with a similar name exists: `m`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0577`.