Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-43806.rs
blob: 8c8cccfb2bb820ec91793c74a73071bfbb2b8be3 [
file
] [
log
] [
blame
]
// check-pass
#![
deny
(
unused_results
)]
enum
Void
{}
fn
foo
()
{}
fn
bar
()
->
!
{
loop
{}
}
fn
baz
()
->
Void
{
loop
{}
}
fn
qux
()
{
foo
();
bar
();
baz
();
}
fn
main
()
{}