about summary refs log tree commit diff
path: root/src/test/ui/feature-gates/trace_macros-gate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/feature-gates/trace_macros-gate.rs')
-rw-r--r--src/test/ui/feature-gates/trace_macros-gate.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/feature-gates/trace_macros-gate.rs b/src/test/ui/feature-gates/trace_macros-gate.rs
deleted file mode 100644
index c9af04741ac..00000000000
--- a/src/test/ui/feature-gates/trace_macros-gate.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// Test that the trace_macros feature gate is on.
-
-fn main() {
-    trace_macros!(); //~ ERROR `trace_macros` is not stable
-                     //~| ERROR trace_macros! accepts only `true` or `false`
-    trace_macros!(true); //~ ERROR `trace_macros` is not stable
-    trace_macros!(false); //~ ERROR `trace_macros` is not stable
-
-    macro_rules! expando {
-        ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable
-    }
-
-    expando!(true);
-}