rust/src/test/ui/lint/lint-non-snake-case-modules.rs
Andy Russell 7c0d145ec1
improve non_snake_case diagnostics
Use a structured suggestion and tighten the span to just the identifier.
2019-01-08 13:24:38 -05:00

11 lines
175 B
Rust

#![deny(non_snake_case)]
#![allow(dead_code)]
mod FooBar { //~ ERROR module `FooBar` should have a snake case name
pub struct S;
}
fn f(_: FooBar::S) { }
fn main() { }