gauge_test.go 178 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package counter import ( "fmt" "testing" ) type cc int64 func TestCounter(t *testing.T){ var c cc c = 1 fmt.Println(c) d :=2 fmt.Println(d) d = int(c) fmt.Println(d) }