mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
LL| |#![allow(unused_assignments, unused_variables)]
|
|
LL| |
|
|
LL| 1|fn main() {
|
|
LL| 1| let result
|
|
LL| 1| =
|
|
LL| 1| loop
|
|
LL| 1| {
|
|
LL| 1| break
|
|
LL| 1| 10
|
|
LL| 1| ;
|
|
LL| 1| }
|
|
LL| 1| ;
|
|
LL| 1|}
|
|
|