blob: f6d349a38f52338729d6880a785d64298c3f5720 [file] [log] [blame]
// build-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() {}