This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
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 16:34:01 -05:00
// error-pattern:Break outside a loop
fn
main
(
)
{
Reformat for new syntax
2011-07-27 07:19:39 -05: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 16:34:01 -05:00
Reformat for new syntax
2011-07-27 07:19:39 -05: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 16:34:01 -05:00
}
Reference in New Issue
Copy Permalink