]> git.lizzy.rs Git - rust.git/blob - tests/ui/attributes/unused-item-in-attr.rs
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[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() {}