v2 / vlib / v / tests / structs / struct_heap_test.v
8 lines · 7 sloc · 74 bytes · e29dc9893c6fd51098f148347ba19a12ce6aaba0
Raw
1@[heap]
2struct Data {
3 array [1024]int
4}
5
6fn test_main() {
7 _ := Data{}
8}
9