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/issues/issue-34932.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/ui/issues/issue-34932.rs (limited to 'tests/ui/issues/issue-34932.rs') diff --git a/tests/ui/issues/issue-34932.rs b/tests/ui/issues/issue-34932.rs new file mode 100644 index 000000000..ab568fd01 --- /dev/null +++ b/tests/ui/issues/issue-34932.rs @@ -0,0 +1,11 @@ +// run-pass +// compile-flags:--test +#![cfg(any())] // This test should be configured away +#![feature(rustc_attrs)] // Test that this is allowed on stable/beta +#![feature(iter_arith_traits)] // Test that this is not unused +#![deny(unused_features)] + +#[test] +fn dummy() { + let () = "this should not reach type-checking"; +} -- cgit v1.2.3