aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/rename/generics/unions.go
blob: c737b5c27e2c8b2876aeb16cfb27a45646c4e5b6 (plain)
1
2
3
4
5
6
7
8
9
10
//go:build go1.18
// +build go1.18

package generics

type T string //@rename("T", "R")

type C interface {
	T | ~int //@rename("T", "S")
}