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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
149 B
Rust
Raw Normal View History

2021-09-04 21:36:51 -05:00
// edition:2018
#[must_not_suspend = "You gotta use Umm's, ya know?"] //~ ERROR the `#[must_not_suspend]`
2021-09-04 21:36:51 -05:00
struct Umm {
_i: i64
}
fn main() {
}