mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
12 lines
169 B
Rust
12 lines
169 B
Rust
// check-pass
|
|
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
#![deny(non_snake_case)]
|
|
|
|
// This name is neither upper nor lower case
|
|
fn 你好() {}
|
|
|
|
fn main() {}
|