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

#[must_not_suspend] //~ ERROR attribute should be
mod inner {}

fn main() {}