7 lines
105 B
Rust
7 lines
105 B
Rust
|
// error-pattern:this block must not have a result
|
||
|
|
||
|
fn main() {
|
||
|
do {
|
||
|
true
|
||
|
} while true;
|
||
|
}
|