Sign in
◑
Theme
go
/
gofrontend
/
94a5ff53df24c58c5e6629ce6720a02aa9986322
/
.
/
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() {}