mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
23 lines
252 B
Rust
23 lines
252 B
Rust
// run-pass
|
|
#![allow(unused_must_use)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
#![allow(unreachable_code)]
|
|
|
|
fn foo() -> bool { false }
|
|
|
|
fn bar() {
|
|
return;
|
|
!foo();
|
|
}
|
|
|
|
fn baz() {
|
|
return;
|
|
if "" == "" {}
|
|
}
|
|
|
|
pub fn main() {
|
|
bar();
|
|
baz();
|
|
}
|