zig/test/cases/bugs/1230.zig

12 lines
174 B
Zig
Raw Normal View History

const S = extern struct {
x: i32,
};
extern fn ret_struct() S {
return S { .x = 0 };
}
test "extern return small struct (bug 1230)" {
const s = ret_struct();
}