mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +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|}
|
|
|