mirror of https://github.com/rust-lang/rust
15 lines
334 B
Plaintext
15 lines
334 B
Plaintext
error: attribute value must be a literal
|
|
--> $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
|
|
|