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