mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-27 13:57:20 +00:00
7 lines
157 B
Rust
7 lines
157 B
Rust
#![crate_type = "rlib"]
|
|
#![crate_name = "NonSnakeCase"]
|
|
//~^ ERROR crate `NonSnakeCase` should have a snake case name
|
|
#![deny(non_snake_case)]
|
|
|
|
fn main() {}
|