bind: update testdata to reflect changes from cl/17866

Change-Id: Icdc68c536b8bc9c5e3874731e33b5f90e123a052
Reviewed-on: https://go-review.googlesource.com/18618
Reviewed-by: David Crawshaw <crawshaw@golang.org>
This commit is contained in:
Hyang-Ah Hana Kim
2016-01-13 21:19:59 +00:00
parent a99e944551
commit 24a199a648
9 changed files with 112 additions and 104 deletions
+3 -2
View File
@@ -10,8 +10,9 @@ public abstract class Try {
private Try() {} // uninstantiable
public static String This() {
go.Seq _in = new go.Seq();
go.Seq _out = new go.Seq();
go.Seq _in = null;
go.Seq _out = null;
_out = new go.Seq();
String _result;
Seq.send(DESCRIPTOR, CALL_This, _in, _out);
_result = _out.readString();