]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-non-snake-case-crate.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / test / ui / lint / lint-non-snake-case-crate.rs
1 #![crate_name = "NonSnakeCase"]
2 //~^ ERROR crate `NonSnakeCase` should have a snake case name
3 #![deny(non_snake_case)]
4
5 fn main() {}