mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
367 B
Plaintext
17 lines
367 B
Plaintext
error: unexpected expression: `{
|
|
extern crate alloc;
|
|
}`
|
|
--> $DIR/unused-item-in-attr.rs:1:7
|
|
|
|
|
LL | #[w = { extern crate alloc; }]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: cannot find attribute `w` in this scope
|
|
--> $DIR/unused-item-in-attr.rs:1:3
|
|
|
|
|
LL | #[w = { extern crate alloc; }]
|
|
| ^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|