]> git.lizzy.rs Git - rust.git/blob - tests/ui/attributes/unused-item-in-attr.rs
Move /src/test to /tests
[rust.git] / tests / ui / attributes / unused-item-in-attr.rs
1 #[w = { extern crate alloc; }]
2 //~^ ERROR unexpected expression: `{
3 //~| ERROR cannot find attribute `w` in this scope
4 fn f() {}
5
6 fn main() {}