aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/types2/testdata/fixedbugs/issue42758.go2
blob: 698cb8a16bad26194a40f5893e7a1d493b30083c (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
// 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.

package p

func _[T any](x interface{}){
	switch x.(type) {
	case T: // ok to use a type parameter
	case int:
	}

	switch x.(type) {
	case T:
	case T /* ERROR duplicate case */ :
	}
}

type constraint interface {
	type int
}

func _[T constraint](x interface{}){
	switch x.(type) {
	case T: // ok to use a type parameter even if type list contains int
	case int:
	}
}

func _(x constraint /* ERROR contains type constraints */ ) {
	switch x /* ERROR contains type constraints */ .(type) {
	}
}