]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-non-snake-case-no-lowercase-equivalent.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / lint-non-snake-case-no-lowercase-equivalent.rs
1 // check-pass
2
3 #![allow(dead_code)]
4 // pretty-expanded FIXME #23616
5
6 #![deny(non_snake_case)]
7
8 // This name is neither upper nor lower case
9 fn 你好() {}
10
11 fn main() {}