]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/issue-31924-non-snake-ffi.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / lint / issue-31924-non-snake-ffi.rs
CommitLineData
dc9dc135
XL
1// check-pass
2
ea8adc8c 3#![deny(non_snake_case)]
1a4d82fc 4
dc9dc135
XL
5#[no_mangle]
6pub extern "C" fn SparklingGenerationForeignFunctionInterface() {} // OK
a1dfa0c6 7
94222f64
XL
8pub struct Foo;
9
10impl Foo {
11 #[no_mangle]
12 pub extern "C" fn SparklingGenerationForeignFunctionInterface() {} // OK
13}
14
a1dfa0c6 15fn main() {}