summaryrefslogtreecommitdiffstats
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, 14 insertions, 0 deletions
diff --git a/src/test/ui/feature-gates/trace_macros-gate.rs b/src/test/ui/feature-gates/trace_macros-gate.rs
new file mode 100644
index 000000000..c9af04741
--- /dev/null
+++ b/src/test/ui/feature-gates/trace_macros-gate.rs
@@ -0,0 +1,14 @@
+// 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);
+}