-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
parse: test bad variants wrt. issue 48137.
- Loading branch information
Showing
2 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
src/test/ui/parser/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
fn main() {} | ||
|
||
macro_rules! expand_to_enum { | ||
() => { | ||
enum BadE {} | ||
//~^ ERROR enum is not supported in `trait`s or `impl`s | ||
//~| ERROR enum is not supported in `trait`s or `impl`s | ||
//~| ERROR enum is not supported in `extern` blocks | ||
}; | ||
} | ||
|
||
macro_rules! mac_impl { | ||
($($i:item)*) => { | ||
struct S; | ||
impl S { $($i)* } | ||
} | ||
} | ||
|
||
mac_impl! { | ||
struct BadS; //~ ERROR struct is not supported in `trait`s or `impl`s | ||
expand_to_enum!(); | ||
} | ||
|
||
macro_rules! mac_trait { | ||
($($i:item)*) => { | ||
trait T { $($i)* } | ||
} | ||
} | ||
|
||
mac_trait! { | ||
struct BadS; //~ ERROR struct is not supported in `trait`s or `impl`s | ||
expand_to_enum!(); | ||
} | ||
|
||
macro_rules! mac_extern { | ||
($($i:item)*) => { | ||
extern "C" { $($i)* } | ||
} | ||
} | ||
|
||
mac_extern! { | ||
struct BadS; //~ ERROR struct is not supported in `extern` blocks | ||
expand_to_enum!(); | ||
} |
53 changes: 53 additions & 0 deletions
53
src/test/ui/parser/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
error: struct is not supported in `trait`s or `impl`s | ||
--> $DIR/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs:20:5 | ||
| | ||
LL | struct BadS; | ||
| ^^^^^^^^^^^^ | ||
|
||
error: enum is not supported in `trait`s or `impl`s | ||
--> $DIR/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs:5:9 | ||
| | ||
LL | enum BadE {} | ||
| ^^^^^^^^^ | ||
... | ||
LL | expand_to_enum!(); | ||
| ------------------ in this macro invocation | ||
| | ||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: struct is not supported in `trait`s or `impl`s | ||
--> $DIR/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs:31:5 | ||
| | ||
LL | struct BadS; | ||
| ^^^^^^^^^^^^ | ||
|
||
error: enum is not supported in `trait`s or `impl`s | ||
--> $DIR/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs:5:9 | ||
| | ||
LL | enum BadE {} | ||
| ^^^^^^^^^ | ||
... | ||
LL | expand_to_enum!(); | ||
| ------------------ in this macro invocation | ||
| | ||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: struct is not supported in `extern` blocks | ||
--> $DIR/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs:42:5 | ||
| | ||
LL | struct BadS; | ||
| ^^^^^^^^^^^^ | ||
|
||
error: enum is not supported in `extern` blocks | ||
--> $DIR/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs:5:9 | ||
| | ||
LL | enum BadE {} | ||
| ^^^^^^^^^ | ||
... | ||
LL | expand_to_enum!(); | ||
| ------------------ in this macro invocation | ||
| | ||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: aborting due to 6 previous errors | ||
|