Sign in
go
/
gofrontend
/
f5d708fd905d3f91d848a0ea25c77119f8af0c36
/
.
/
libgo
/
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() {}