]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/command-line-lint-group-warn.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / command-line-lint-group-warn.rs
1 // compile-flags: -W bad-style
2 // check-pass
3
4 fn main() {
5     let _InappropriateCamelCasing = true;
6     //~^ WARNING should have a snake case name
7 }