2
0
mirror of synced 2025-02-23 14:58:12 +00:00
mobile/bind/testdata/issue12403.go
Hyang-Ah (Hana) Kim 671f57b233 bind: fix interface methods' multiple return values handling.
Fixes golang/go#12403

Change-Id: I9b8e6d69beb1ceb27e991348212acb5054497e47
Reviewed-on: https://go-review.googlesource.com/14077
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2015-08-31 16:32:47 +00:00

7 lines
104 B
Go

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