mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
124 B
Rust
10 lines
124 B
Rust
pub struct Foo {
|
|
pub foo: extern "C" fn()
|
|
}
|
|
|
|
extern "C" fn the_foo() {}
|
|
|
|
pub const FOO: Foo = Foo {
|
|
foo: the_foo
|
|
};
|