2
0
mirror of synced 2025-02-24 07:18:15 +00:00
mobile/bind/testdata/try.go.golden
Hyang-Ah (Hana) Kim 876458415e bind: rename seq package with name _seq in generated Go code
Avoid taking a good name (seq) away from users.

Fixes golang/go#14168

Change-Id: I88e90cb74b479e348c642a1caa27096ed4a6d68e
Reviewed-on: https://go-review.googlesource.com/19601
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2016-02-21 08:48:00 +00:00

20 lines
349 B
Plaintext

// Package go_try is an autogenerated binder stub for package try.
// gobind -lang=go try
//
// File is generated by gobind. Do not edit.
package go_try
import (
_seq "golang.org/x/mobile/bind/seq"
"try"
)
func proxy_This(out, in *_seq.Buffer) {
res := try.This()
out.WriteString(res)
}
func init() {
_seq.Register("try", 1, proxy_This)
}