aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/rename/generics/unions.go.golden
blob: 463289629c51e707d5c638352f926dc23e93a54a (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
-- R-rename --
//go:build go1.18
// +build go1.18

package generics

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

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

-- S-rename --
//go:build go1.18
// +build go1.18

package generics

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

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