diff --git a/src/26997.rs b/src/26997.rs new file mode 100644 index 00000000..a93f863e --- /dev/null +++ b/src/26997.rs @@ -0,0 +1,13 @@ +pub struct Foo { + x: isize, + y: isize +} + +impl Foo { + pub extern fn foo_new() -> Foo { + Foo { x: 21, y: 33 } + } +} + +fn main() { +}