Sign in
go
/
go
/
ae7b6a3b779c4d6de96f59efbfed0b899c3ff6df
/
.
/
misc
/
cgo
/
testplugin
/
testdata
/
issue19529
/
plugin.go
blob: ad2df6cc7c7e74f388da964af36c50321471e91c [
file
]
package main
import (
"reflect"
)
type Foo struct {
Bar string `json:"Bar@baz,omitempty"`
}
func F() {
println(reflect.TypeOf(Foo{}).Field(0).Tag)
}
func main() {}