mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-08 04:56:58 +00:00
8 lines
193 B
Rust
8 lines
193 B
Rust
//@ only-x86_64-unknown-linux-gnu
|
|
#![crate_type = "cdylib"]
|
|
#![crate_name = "NonSnakeCase"]
|
|
//~^ ERROR crate `NonSnakeCase` should have a snake case name
|
|
#![deny(non_snake_case)]
|
|
|
|
fn main() {}
|