Sign in
android
/
platform
/
external
/
golang-x-tools
/
f10932f763d058b0dcb3acfb795c869996fef47b
/
.
/
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")
}