Sign in
go
/
tools
/
bebd890374898b8c6c9fb163f02a62bd41eec577
/
.
/
internal
/
lsp
/
testdata
/
rename
/
generics
/
unions.go
blob: c737b5c27e2c8b2876aeb16cfb27a45646c4e5b6 [
file
] [
log
] [
blame
]
//go:build go1.18
// +build go1.18
package generics
type T string
//@rename("T", "R")
type C interface {
T | ~int
//@rename("T", "S")
}