mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 20:37:12 +00:00
7 lines
155 B
Rust
7 lines
155 B
Rust
//@ compile-flags: --crate-name NonSnakeCase
|
|
//@ error-pattern: crate `NonSnakeCase` should have a snake case name
|
|
|
|
#![deny(non_snake_case)]
|
|
|
|
fn main() {}
|