mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
24 lines
193 B
Rust
24 lines
193 B
Rust
// check-pass
|
|
|
|
#![deny(unused_results)]
|
|
|
|
enum Void {}
|
|
|
|
fn foo() {}
|
|
|
|
fn bar() -> ! {
|
|
loop {}
|
|
}
|
|
|
|
fn baz() -> Void {
|
|
loop {}
|
|
}
|
|
|
|
fn qux() {
|
|
foo();
|
|
bar();
|
|
baz();
|
|
}
|
|
|
|
fn main() {}
|