summaryrefslogtreecommitdiffstats
path: root/third_party/rust/rustversion/tests/ui/bad-not.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/rustversion/tests/ui/bad-not.rs')
-rw-r--r--third_party/rust/rustversion/tests/ui/bad-not.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/rust/rustversion/tests/ui/bad-not.rs b/third_party/rust/rustversion/tests/ui/bad-not.rs
new file mode 100644
index 0000000000..058f340f69
--- /dev/null
+++ b/third_party/rust/rustversion/tests/ui/bad-not.rs
@@ -0,0 +1,7 @@
+#[rustversion::any(not)]
+struct S;
+
+#[rustversion::any(not, not)]
+struct S;
+
+fn main() {}