]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/visibility-ty-params.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / span / visibility-ty-params.stderr
1 error: unexpected generic arguments in path
2 --> $DIR/visibility-ty-params.rs:6:6
3 |
4 LL | m!{ S<u8> }
5 | ^^^^
6
7 error[E0577]: expected module, found struct `S`
8 --> $DIR/visibility-ty-params.rs:6:5
9 |
10 LL | m!{ S<u8> }
11 | ^^^^^ not a module
12
13 error: unexpected generic arguments in path
14 --> $DIR/visibility-ty-params.rs:10:10
15 |
16 LL | m!{ m<> }
17 | ^^
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0577`.