mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 17:53:56 +00:00
23 lines
596 B
Plaintext
23 lines
596 B
Plaintext
|
error[E0577]: expected module, found struct `S`
|
||
|
--> $DIR/visibility-ty-params.rs:16:5
|
||
|
|
|
||
|
16 | m!{ S<u8> } //~ ERROR generic arguments in visibility path
|
||
|
| -^^^^
|
||
|
| |
|
||
|
| did you mean `m`?
|
||
|
|
||
|
error: generic arguments in visibility path
|
||
|
--> $DIR/visibility-ty-params.rs:16:6
|
||
|
|
|
||
|
16 | m!{ S<u8> } //~ ERROR generic arguments in visibility path
|
||
|
| ^^^^
|
||
|
|
||
|
error: generic arguments in visibility path
|
||
|
--> $DIR/visibility-ty-params.rs:20:10
|
||
|
|
|
||
|
20 | m!{ m<> } //~ ERROR generic arguments in visibility path
|
||
|
| ^^
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|