Files
c3c/test/test_suite/struct/const_zero_init_1360.c3t
2024-08-16 18:33:30 +02:00

22 lines
395 B
Plaintext

module test;
import std::collections::map;
def Foo = HashMap(<String, HashMap(<String, String>)>);
fn void main()
{
HashMap(<String, String>) map0;
map0["c3c"] = {};
Foo map;
map["c3c"] = {};
map["c3c"] = { {}, null, 1 ,2 ,2 };
HashMap(<String, HashMap(<String, String>)>) map2;
map2["c3c"] = {};
map2["c3c"] = { {}, null, 1 ,2 ,2 };
}
/* #expect: test.ll
main