blob: 5b9faca4911e891c9287120ba060413b7a412519 [file] [log] [blame]
// 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() {}