This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2024-11-23 23:34:48 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
4aa165553b
rust
/
src
/
test
/
compile-fail
/
break-outside-loop.rs
7 lines
107 B
Rust
Raw
Normal View
History
Unescape
Escape
Friendlier error message for break outside a loop The typechecker should really check for this, but at least now there's an error message rather than an inexhaustive match failure in trans.
2011-06-10 21:34:01 +00:00
// error-pattern:Break outside a loop
fn
main
(
)
{
Reformat for new syntax
2011-07-27 12:19:39 +00:00
let
pth
=
break
;
Friendlier error message for break outside a loop The typechecker should really check for this, but at least now there's an error message rather than an inexhaustive match failure in trans.
2011-06-10 21:34:01 +00:00
Reformat for new syntax
2011-07-27 12:19:39 +00:00
let
rs
:
{
t
:
str
}
=
{
t
:
pth
}
;
Friendlier error message for break outside a loop The typechecker should really check for this, but at least now there's an error message rather than an inexhaustive match failure in trans.
2011-06-10 21:34:01 +00:00
}
Reference in New Issue
Copy Permalink