rust/tests/ui/span/visibility-ty-params.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
496 B
Plaintext
Raw Normal View History

2017-08-21 16:54:03 -05:00
error: unexpected generic arguments in path
--> $DIR/visibility-ty-params.rs:6:6
|
2019-03-09 06:03:44 -06:00
LL | m!{ S<u8> }
| ^^^^
error[E0577]: expected module, found struct `S`
--> $DIR/visibility-ty-params.rs:6:5
|
LL | m!{ S<u8> }
| ^^^^^ not a module
2017-08-21 16:54:03 -05:00
error: unexpected generic arguments in path
--> $DIR/visibility-ty-params.rs:10:10
2017-08-17 04:03:59 -05:00
|
2019-03-09 06:03:44 -06:00
LL | m!{ m<> }
| ^^
2017-08-17 04:03:59 -05:00
error: aborting due to 3 previous errors
2019-10-15 06:52:57 -05:00
For more information about this error, try `rustc --explain E0577`.