mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
261 B
Rust
17 lines
261 B
Rust
// run-pass
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
extern "C" fn foopy() {}
|
|
|
|
static f: extern "C" fn() = foopy;
|
|
static s: S = S { f: foopy };
|
|
|
|
struct S {
|
|
f: extern "C" fn()
|
|
}
|
|
|
|
pub fn main() {
|
|
assert!(foopy as extern "C" fn() == f);
|
|
assert!(f == s.f);
|
|
}
|