struct MyStruct { foo: int; } struct Program { static Main(): int { myStruct: Reference<MyStruct>; myStruct = alloc MyStruct; return 0; } }