]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/visibility-ty-params.stderr
Optimize `TyKind::eq`.
[rust.git] / tests / 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`.