From 7cafacdd82226e57971fe629311a41b26d68838c Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Sun, 28 Apr 2019 23:12:35 +0300 Subject: [PATCH] Add test case for labeled break in const assignment See https://github.com/rust-lang/rust/issues/51350 for more information. --- src/test/run-pass/consts/const-labeled-break.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/test/run-pass/consts/const-labeled-break.rs diff --git a/src/test/run-pass/consts/const-labeled-break.rs b/src/test/run-pass/consts/const-labeled-break.rs new file mode 100644 index 0000000000000..9417159e6fb78 --- /dev/null +++ b/src/test/run-pass/consts/const-labeled-break.rs @@ -0,0 +1,10 @@ +// Using labeled break in a while loop has caused an illegal instruction being +// generated, and an ICE later. +// +// See https://github.com/rust-lang/rust/issues/51350 for more information. + +const CRASH: () = 'a: while break 'a {}; + +fn main() { + println!("{:?}", CRASH); +}