Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
go / opt / go / src / cmd / cgo / internal / testplugin / testdata / issue19529 / plugin.go
Size: Mime:
package main

import (
	"reflect"
)

type Foo struct {
	Bar string `json:"Bar@baz,omitempty"`
}

func F() {
	println(reflect.TypeOf(Foo{}).Field(0).Tag)
}

func main() {}