mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
16 lines
267 B
Rust
16 lines
267 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() {}
|