From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/feature-gates/trace_macros-gate.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/ui/feature-gates/trace_macros-gate.rs (limited to 'tests/ui/feature-gates/trace_macros-gate.rs') diff --git a/tests/ui/feature-gates/trace_macros-gate.rs b/tests/ui/feature-gates/trace_macros-gate.rs new file mode 100644 index 000000000..c9af04741 --- /dev/null +++ b/tests/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); +} -- cgit v1.2.3