mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
11 lines
283 B
Rust
11 lines
283 B
Rust
#![deny(unused)]
|
|
#[crate_name = "owo"]
|
|
//~^ ERROR: crate-level attribute should be an inner attribute: add an exclamation mark: `#![crate_name]`
|
|
|
|
fn main() {}
|
|
|
|
mod inner {
|
|
#![crate_name = "iwi"]
|
|
//~^ ERROR: the `#![crate_name]` attribute can only be used at the crate root
|
|
}
|