blob: a467ff6dd0a1ada7050fb7f0842a2256967bd44b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: macro expansion ignores token `;` and any following
--> $DIR/issue-30007.rs:12:20
|
LL | () => ( String ; ); //~ ERROR macro expansion ignores token `;`
| ^
|
note: caused by the macro expansion here; the usage of `t!` is likely invalid in type context
--> $DIR/issue-30007.rs:16:16
|
LL | let i: Vec<t!()>;
| ^^^^
error: aborting due to previous error
|