rust/tests/ui/issues/auxiliary/issue-13620-1.rs

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
};