about summary refs log tree commit diff
path: root/tests/ui/issues/issue-32950.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-32950.rs')
-rw-r--r--tests/ui/issues/issue-32950.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/ui/issues/issue-32950.rs b/tests/ui/issues/issue-32950.rs
deleted file mode 100644
index b51ac296776..00000000000
--- a/tests/ui/issues/issue-32950.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#![feature(concat_idents)]
-#![expect(deprecated)] // concat_idents is deprecated
-
-#[derive(Debug)]
-struct Baz<T>(
-    concat_idents!(Foo, Bar) //~ ERROR `derive` cannot be used on items with type macros
-                             //~^ ERROR cannot find type `FooBar` in this scope
-);
-
-fn main() {}