summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/issue-8460-const.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/numbers-arithmetic/issue-8460-const.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/numbers-arithmetic/issue-8460-const.rs')
-rw-r--r--src/test/ui/numbers-arithmetic/issue-8460-const.rs59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/test/ui/numbers-arithmetic/issue-8460-const.rs b/src/test/ui/numbers-arithmetic/issue-8460-const.rs
deleted file mode 100644
index 02e7567da..000000000
--- a/src/test/ui/numbers-arithmetic/issue-8460-const.rs
+++ /dev/null
@@ -1,59 +0,0 @@
-// revisions: noopt opt opt_with_overflow_checks
-//[noopt]compile-flags: -C opt-level=0
-//[opt]compile-flags: -O
-//[opt_with_overflow_checks]compile-flags: -C overflow-checks=on -O
-
-// build-fail
-
-use std::thread;
-
-fn main() {
- assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i128::MIN / -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i128 / 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { i128::MIN % -1; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
- //~^ ERROR operation will panic
- assert!(thread::spawn(move|| { 1i128 % 0; }).join().is_err());
- //~^ ERROR operation will panic
-}