blob: 1442c0cc7aab3e95270824592ac6eef284526739 [file] [log] [blame]
pub struct Foo {
pub foo: extern fn()
}
extern fn the_foo() {}
pub const FOO: Foo = Foo {
foo: the_foo
};