summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-concat_idents2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/feature-gates/feature-gate-concat_idents2.rs')
-rw-r--r--src/test/ui/feature-gates/feature-gate-concat_idents2.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/ui/feature-gates/feature-gate-concat_idents2.rs b/src/test/ui/feature-gates/feature-gate-concat_idents2.rs
new file mode 100644
index 000000000..9660ffeaf
--- /dev/null
+++ b/src/test/ui/feature-gates/feature-gate-concat_idents2.rs
@@ -0,0 +1,4 @@
+fn main() {
+ concat_idents!(a, b); //~ ERROR `concat_idents` is not stable enough
+ //~| ERROR cannot find value `ab` in this scope
+}