mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
d0111cb57a
We're trying to test lint behavior, not per-target crate-type support.
7 lines
192 B
Rust
7 lines
192 B
Rust
//@ only-x86_64-unknown-linux-gnu
|
|
#![crate_type = "dylib"]
|
|
#![crate_name = "NonSnakeCase"]
|
|
//~^ ERROR crate `NonSnakeCase` should have a snake case name
|
|
#![deny(non_snake_case)]
|
|
|
|
fn main() {}
|