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