Lines Matching full:make
16 x = make(map[int]int) // ERROR "cannot use make\(map\[int\]int\)|incompatible"
17 x = make(map[int]int, 0) // ERROR "cannot use make\(map\[int\]int, 0\)|incompatible"
18 x = make(map[int]int, zero) // ERROR "cannot use make\(map\[int\]int, zero\)|incompatible"
19 x = make(chan int) // ERROR "cannot use make\(chan int\)|incompatible"
20 x = make(chan int, 0) // ERROR "cannot use make\(chan int, 0\)|incompatible"
21 x = make(chan int, zero) // ERROR "cannot use make\(chan int, zero\)|incompatible"