rust/tests/ui/lint/must_not_suspend/feature-gate-must_not_suspe...

10 lines
150 B
Rust

//@ edition:2018
#[must_not_suspend = "You gotta use Umm's, ya know?"] //~ ERROR the `#[must_not_suspend]`
struct Umm {
_i: i64
}
fn main() {
}