aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/break-rust1.rs
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2023-04-03 18:58:43 +0300
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 18:34:09 +0100
commit10d9514c67ac76963feb4e8cd2310a63d2519b8f (patch)
treec323c0e19bb3b95a8e56bb1e58ef098864d7a235 /gcc/testsuite/rust/compile/break-rust1.rs
parent5138ddc3d652b66d3292c1543c34752e9ed78fc6 (diff)
downloadgcc-10d9514c67ac76963feb4e8cd2310a63d2519b8f.zip
gcc-10d9514c67ac76963feb4e8cd2310a63d2519b8f.tar.gz
gcc-10d9514c67ac76963feb4e8cd2310a63d2519b8f.tar.bz2
gccrs: resolve: Add "break rust" Easter egg
When we encounter a "break rust" statement, emit a funny error message and intentionally cause an ICE. This matches the corresponding Easter egg in rustc. As a GNU extension, "break gcc" is also supported. The conditions for this to happen are: * The break expression must be literally "rust" or "gcc". For instance, "break (rust)" will not trigger the Easter egg. * The name ("rust" or "gcc") must not be in scope; if it is, no error is emitted, and the compilation proceeds as usual. In other words, this only affects how GCC diagnoses programs that would fail to compile anyway. Note that this is different from the conditions under which rustc emits its ICE. For rustc, it matters whether or not the "break" is inside a loop, and for us it matters whether or not the name resolves. The end result should be the same anyway: valid programs continue to compile, and typing in fn main() { break rust; } triggers a funny ICE. Closes https://github.com/Rust-GCC/gccrs/issues/1996 gcc/rust/ChangeLog: * resolve/rust-ast-resolve-expr.cc: Add "break rust" Easter egg gcc/testsuite/ChangeLog: * lib/prune.exp (prune_ices): Also prune "You have broken GCC Rust. This is a feature." * rust/compile/break-rust1.rs: New test * rust/compile/break-rust2.rs: New test * rust/compile/break-rust3.rs: New test Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
Diffstat (limited to 'gcc/testsuite/rust/compile/break-rust1.rs')
-rw-r--r--gcc/testsuite/rust/compile/break-rust1.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/rust/compile/break-rust1.rs b/gcc/testsuite/rust/compile/break-rust1.rs
new file mode 100644
index 0000000..65d64f9
--- /dev/null
+++ b/gcc/testsuite/rust/compile/break-rust1.rs
@@ -0,0 +1,7 @@
+fn main() {
+ let rust = "crab";
+ let res = loop {
+ // { dg-warning "unused name" "" { target *-*-* } .-1 }
+ break rust;
+ };
+}