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/intrinsics/unchecked_math_unstable.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/ui/intrinsics/unchecked_math_unstable.rs (limited to 'tests/ui/intrinsics/unchecked_math_unstable.rs') diff --git a/tests/ui/intrinsics/unchecked_math_unstable.rs b/tests/ui/intrinsics/unchecked_math_unstable.rs new file mode 100644 index 000000000..8869063d1 --- /dev/null +++ b/tests/ui/intrinsics/unchecked_math_unstable.rs @@ -0,0 +1,8 @@ +fn main() { + let (x, y) = (1u32, 2u32); + unsafe { + let add = std::intrinsics::unchecked_add(x, y); //~ ERROR use of unstable library feature + let sub = std::intrinsics::unchecked_sub(x, y); //~ ERROR use of unstable library feature + let mul = std::intrinsics::unchecked_mul(x, y); //~ ERROR use of unstable library feature + } +} -- cgit v1.2.3