2022-02-28 22:32:19 +00:00
|
|
|
// compile
|
2021-07-20 16:37:35 +00:00
|
|
|
|
|
|
|
// Copyright 2020 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// This file tests built-in calls on generic types.
|
|
|
|
|
|
|
|
// derived and expanded from cmd/compile/internal/types2/testdata/check/builtins.go2
|
|
|
|
|
|
|
|
package builtins
|
|
|
|
|
|
|
|
// close
|
|
|
|
|
|
|
|
type C0 interface{ int }
|
|
|
|
type C1 interface{ chan int }
|
|
|
|
type C2 interface{ chan int | <-chan int }
|
|
|
|
type C3 interface{ chan int | chan float32 }
|
|
|
|
type C4 interface{ chan int | chan<- int }
|
|
|
|
type C5[T any] interface{ ~chan T | chan<- T }
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func f1[T C1](ch T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func f2[T C3](ch T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func f3[T C4](ch T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func f4[T C5[X], X any](ch T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete
|
|
|
|
|
|
|
|
type M0 interface{ int }
|
|
|
|
type M1 interface{ map[string]int }
|
2021-07-28 20:39:30 +00:00
|
|
|
type M2 interface {
|
|
|
|
map[string]int | map[string]float64
|
|
|
|
}
|
2021-07-20 16:37:35 +00:00
|
|
|
type M3 interface{ map[string]int | map[rune]int }
|
|
|
|
type M4[K comparable, V any] interface{ map[K]V | map[rune]V }
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func g1[T M1](m T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
delete(m, "foo")
|
|
|
|
}
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func g2[T M2](m T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
delete(m, "foo")
|
|
|
|
}
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func g3[T M4[rune, V], V any](m T) {
|
2021-07-20 16:37:35 +00:00
|
|
|
delete(m, 'k')
|
|
|
|
}
|
|
|
|
|
|
|
|
// make
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func m1[
|
|
|
|
S1 interface{ []int },
|
|
|
|
S2 interface{ []int | chan int },
|
2021-07-20 16:37:35 +00:00
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
M1 interface{ map[string]int },
|
|
|
|
M2 interface{ map[string]int | chan int },
|
2021-07-20 16:37:35 +00:00
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
C1 interface{ chan int },
|
|
|
|
C2 interface{ chan int | chan string },
|
|
|
|
]() {
|
|
|
|
_ = make([]int, 10)
|
2021-11-15 18:01:43 +00:00
|
|
|
_ = make(m1S0, 10)
|
2021-08-05 01:01:41 +00:00
|
|
|
_ = make(S1, 10)
|
|
|
|
_ = make(S1, 10, 20)
|
2021-07-20 16:37:35 +00:00
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
_ = make(map[string]int)
|
2021-11-15 18:01:43 +00:00
|
|
|
_ = make(m1M0)
|
2021-08-05 01:01:41 +00:00
|
|
|
_ = make(M1)
|
|
|
|
_ = make(M1, 10)
|
2021-07-20 16:37:35 +00:00
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
_ = make(chan int)
|
2021-11-15 18:01:43 +00:00
|
|
|
_ = make(m1C0)
|
2021-08-05 01:01:41 +00:00
|
|
|
_ = make(C1)
|
|
|
|
_ = make(C1, 10)
|
2021-07-20 16:37:35 +00:00
|
|
|
}
|
2021-11-15 18:01:43 +00:00
|
|
|
// TODO: put these type declarations back inside m1 when issue 47631 is fixed.
|
|
|
|
type m1S0 []int
|
|
|
|
type m1M0 map[string]int
|
|
|
|
type m1C0 chan int
|
2021-07-20 16:37:35 +00:00
|
|
|
|
|
|
|
// len/cap
|
|
|
|
|
|
|
|
type Slice[T any] interface {
|
2021-08-05 01:01:41 +00:00
|
|
|
[]T
|
2021-07-20 16:37:35 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func c1[T any, S Slice[T]]() {
|
2021-07-20 16:37:35 +00:00
|
|
|
x := make(S, 5, 10)
|
|
|
|
_ = len(x)
|
|
|
|
_ = cap(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// append
|
|
|
|
|
2021-08-05 01:01:41 +00:00
|
|
|
func a1[T any, S Slice[T]]() {
|
2021-07-20 16:37:35 +00:00
|
|
|
x := make(S, 5)
|
|
|
|
y := make(S, 2)
|
|
|
|
var z T
|
|
|
|
_ = append(x, y...)
|
|
|
|
_ = append(x, z)
|
|
|
|
}
|