From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- ...s-cannot-interpolate-impl-items-bad-variants.rs | 44 ---------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/test/ui/parser/issues/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs (limited to 'src/test/ui/parser/issues/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs') diff --git a/src/test/ui/parser/issues/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs b/src/test/ui/parser/issues/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs deleted file mode 100644 index 48a679b2d..000000000 --- a/src/test/ui/parser/issues/issue-48137-macros-cannot-interpolate-impl-items-bad-variants.rs +++ /dev/null @@ -1,44 +0,0 @@ -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!(); -} -- cgit v1.2.3