rust/tests/ui/lint/must_not_suspend/feature-gate-must_not_suspend.rs
2023-01-11 09:32:08 +00:00

10 lines
149 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() {
}