]> git.lizzy.rs Git - rust.git/blob - tests/ui/attributes/unused-item-in-attr.rs
Rollup merge of #106106 - jyn514:remote-tracking-branch, r=Mark-Simulacrum
[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() {}