mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:32:01 +00:00
16 lines
266 B
Rust
16 lines
266 B
Rust
// check-pass
|
|
|
|
#![deny(non_snake_case)]
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn SparklingGenerationForeignFunctionInterface() {} // OK
|
|
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
#[no_mangle]
|
|
pub extern "C" fn SparklingGenerationForeignFunctionInterface() {} // OK
|
|
}
|
|
|
|
fn main() {}
|