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