Files
c3c/test/test_suite/overloading/set_overload.c3t
2025-03-03 00:32:20 +01:00

24 lines
551 B
Plaintext

// #target: macos-x64
module test;
import std::collections::map;
def IntMap = HashMap{char[], int};
fn void main()
{
IntMap map;
map.set("Hello", 4);
map["Bye"] = 5;
}
/* #expect: test.ll
define void @test.main() #0 {
entry:
%map = alloca %HashMap, align 8
call void @llvm.memset.p0.i64(ptr align 8 %map, i8 0, i64 48, i1 false)
%0 = call i8 @"std_collections_map$sa$char$int$.HashMap.set"(ptr %map, ptr @.str, i64 5, i32 4)
%1 = call i8 @"std_collections_map$sa$char$int$.HashMap.set"(ptr %map, ptr @.str.1, i64 3, i32 5)
ret void
}