mobile/bind/testdata/issue12403.go

7 lines
104 B
Go

package issue12403
type Parsable interface {
FromJSON(jstr string) string
ToJSON() (string, error)
}