]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/issue-31924-non-snake-ffi.rs
63e42b484427e51885e42a64407c6d14fe95cb89
[rust.git] / src / test / ui / lint / issue-31924-non-snake-ffi.rs
1 // check-pass
2
3 #![deny(non_snake_case)]
4
5 #[no_mangle]
6 pub extern "C" fn SparklingGenerationForeignFunctionInterface() {} // OK
7
8 fn main() {}