15 lines
183 B
Rust
15 lines
183 B
Rust
// compile-pass
|
|
#![allow(dead_code)]
|
|
pub struct Foo {
|
|
x: isize,
|
|
y: isize
|
|
}
|
|
|
|
impl Foo {
|
|
pub extern fn foo_new() -> Foo {
|
|
Foo { x: 21, y: 33 }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|