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/feature-gate-concat_idents.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/ui/feature-gates/feature-gate-concat_idents.rs (limited to 'tests/ui/feature-gates/feature-gate-concat_idents.rs') diff --git a/tests/ui/feature-gates/feature-gate-concat_idents.rs b/tests/ui/feature-gates/feature-gate-concat_idents.rs new file mode 100644 index 000000000..68caf3d71 --- /dev/null +++ b/tests/ui/feature-gates/feature-gate-concat_idents.rs @@ -0,0 +1,9 @@ +const XY_1: i32 = 10; + +fn main() { + const XY_2: i32 = 20; + let a = concat_idents!(X, Y_1); //~ ERROR `concat_idents` is not stable + let b = concat_idents!(X, Y_2); //~ ERROR `concat_idents` is not stable + assert_eq!(a, 10); + assert_eq!(b, 20); +} -- cgit v1.2.3