about summary refs log tree commit diff
path: root/tests/ui/attributes/attr-mix-new.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/attributes/attr-mix-new.rs')
-rw-r--r--tests/ui/attributes/attr-mix-new.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/attributes/attr-mix-new.rs b/tests/ui/attributes/attr-mix-new.rs
new file mode 100644
index 00000000000..8119df0c40c
--- /dev/null
+++ b/tests/ui/attributes/attr-mix-new.rs
@@ -0,0 +1,11 @@
+// build-pass (FIXME(62277): could be check-pass?)
+// pretty-expanded FIXME #23616
+
+#![feature(rustc_attrs)]
+
+#[rustc_dummy(bar)]
+mod foo {
+  #![feature(globs)]
+}
+
+fn main() {}