Fix __get_map_key

This commit is contained in:
gingerBill
2019-07-15 22:38:51 +01:00
parent 08c490d9ac
commit c7a70be824
2 changed files with 8 additions and 2 deletions
+6 -1
View File
@@ -946,7 +946,12 @@ deferred_procedure_associations :: proc() {
}
main :: proc() {
when true {
x: map[int]int;
x[123] = 123;
fmt.println(x);
fmt.println(x[123]);
when false {
general_stuff();
union_type();
parametric_polymorphism();