aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/testdata/check/builtins.go2
blob: 3918d836b5277a8a71d46380b441b1a29d409bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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.

package builtins

type Bmc interface {
	type map[rune]string, chan int
}

type Bms interface {
	type map[string]int, []int
}

type Bcs interface {
	type chan bool, []float64
}

type Bss interface {
	type []int, []string
}

func _[T any] () {
	_ = make(T /* ERROR invalid argument */ )
	_ = make(T /* ERROR invalid argument */ , 10)
	_ = make(T /* ERROR invalid argument */ , 10, 20)
}

func _[T Bmc] () {
	_ = make(T)
	_ = make(T, 10)
	_ = make /* ERROR expects 1 or 2 arguments */ (T, 10, 20)
}

func _[T Bms] () {
	_ = make /* ERROR expects 2 arguments */ (T)
	_ = make(T, 10)
	_ = make /* ERROR expects 2 arguments */ (T, 10, 20)
}

func _[T Bcs] () {
	_ = make /* ERROR expects 2 arguments */ (T)
	_ = make(T, 10)
	_ = make /* ERROR expects 2 arguments */ (T, 10, 20)
}

func _[T Bss] () {
	_ = make /* ERROR expects 2 or 3 arguments */ (T)
	_ = make(T, 10)
	_ = make(T, 10, 20)
}