]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/must_not_suspend/feature-gate-must_not_suspend.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / lint / must_not_suspend / feature-gate-must_not_suspend.rs
CommitLineData
c295e0f8
XL
1// edition:2018
2
3#[must_not_suspend = "You gotta use Umm's, ya know?"] //~ ERROR the `#[must_not_suspend]`
4struct Umm {
5 _i: i64
6}
7
8fn main() {
9}