summaryrefslogtreecommitdiffstats
path: root/tests/ui/diagnostic_namespace/requires_path.rs
blob: e8d6ca73ad0cf400b999c240957326ef81ecf096 (plain)
1
2
3
4
5
6
7
8
9
#![feature(diagnostic_namespace)]

#[diagnostic]
//~^ERROR cannot find attribute `diagnostic` in this scope
pub struct Bar;


fn main() {
}