summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/must_not_suspend/return.rs
blob: 5b1fa5e272118470b48831153aa6ce091b1a37e0 (plain)
1
2
3
4
5
6
7
8
9
// edition:2018
#![feature(must_not_suspend)]
#![deny(must_not_suspend)]

#[must_not_suspend] //~ ERROR attribute should be
fn foo() -> i32 {
    0
}
fn main() {}