build: separate compiler and libs

This commit is contained in:
Li Jie
2025-01-07 21:49:08 +08:00
parent b0123567cd
commit 1172e5bdce
559 changed files with 190 additions and 176 deletions

View File

@@ -0,0 +1,26 @@
package main
type T1 int
type T2 struct {
v int
}
type T3[T any] struct {
v T
}
type cacheKey struct {
t1 T1
t2 T2
t3 T3[any]
t4 *int
t5 uintptr
}
func main() {
m := map[cacheKey]string{}
m[cacheKey{0, T2{0}, T3[any]{0}, nil, 0}] = "world"
v, ok := m[cacheKey{0, T2{0}, T3[any]{0}, nil, 0}]
println(v, ok)
}