aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/types2/testdata/fixedbugs/issue39768.go2
blob: abac141d7f08dd359a26ba18c36b696d7970d40a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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

type T[P any] P
type A = T
var x A[int]
var _ A /* ERROR cannot use generic type */

type B = T[int]
var y B = x
var _ B /* ERROR not a generic type */ [int]

// test case from issue

type Vector[T any] []T
type VectorAlias = Vector
var v Vector[int]