about summary refs log tree commit diff
path: root/tests/ui/async-await/unreachable-lint.rs
blob: e8a58df384ed0d430e3da020f23cc458c0d2c8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ check-pass
//@ edition:2018
#![deny(unreachable_code)]

async fn foo() {
    endless().await;
}

async fn endless() -> ! {
    loop {}
}

fn main() { }