Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
unreachable-lint.rs
blob: e8a58df384ed0d430e3da020f23cc458c0d2c8e7 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition:2018
#![
deny
(
unreachable_code
)]
async
fn
foo
()
{
endless
().
await
;
}
async
fn
endless
()
->
!
{
loop
{}
}
fn
main
()
{
}