2017-01-05 20:55:43 -06:00
|
|
|
// compile-flags: -W bad-style
|
2019-11-05 18:00:00 -06:00
|
|
|
// check-pass
|
2017-01-05 20:55:43 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _InappropriateCamelCasing = true;
|
2019-11-05 18:00:00 -06:00
|
|
|
//~^ WARNING should have a snake case name
|
2017-01-05 20:55:43 -06:00
|
|
|
}
|