about summary refs log tree commit diff
path: root/tests/ui/lint/unreachable-async-fn.rs
blob: 0a699a9ff40bc4ee136f7020f9057e8afe136a44 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass
//@ edition:2018

#[allow(dead_code)]
async fn foo () { // unreachable lint doesn't trigger
   unimplemented!()
}

fn main() {}