summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/command-line-lint-group-warn.rs
blob: f4536f9c9e2189f97aaf1e9b8f652218b87e647e (plain)
1
2
3
4
5
6
7
// compile-flags: -W bad-style
// check-pass

fn main() {
    let _InappropriateCamelCasing = true;
    //~^ WARNING should have a snake case name
}