Files
rust/tests/ui/attributes/crate-only-as-outer.stderr

27 lines
783 B
Plaintext
Raw Normal View History

error: crate-level attribute should be an inner attribute: add an exclamation mark: `#![crate_name]`
--> $DIR/crate-only-as-outer.rs:2:1
|
LL | #[crate_name = "owo"]
| ^^^^^^^^^^^^^^^^^^^^^
|
note: This attribute does not have an `!`, which means it is applied to this function
--> $DIR/crate-only-as-outer.rs:5:1
|
LL | fn main() {}
| ^^^^^^^^^^^^
note: the lint level is defined here
--> $DIR/crate-only-as-outer.rs:1:9
|
LL | #![deny(unused)]
| ^^^^^^
= note: `#[deny(unused_attributes)]` implied by `#[deny(unused)]`
error: the `#![crate_name]` attribute can only be used at the crate root
--> $DIR/crate-only-as-outer.rs:8:5
|
LL | #![crate_name = "iwi"]
| ^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors