commit | c6d8e4aa57b9e06cbf5d3a71047f98d0012aea07 | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Wed Jul 28 15:34:32 2010 -0700 |
committer | Rob Pike <r@golang.org> | Wed Jul 28 15:34:32 2010 -0700 |
tree | 24c0c2152bd61fac9175c1d0f052f0e5bb96153c | |
parent | 87af39e74df434330edf0f1bf4275a6d21ec4295 [diff] [blame] |
update proto library prior to avoid New* methods. diffs generated automatically from Google-internal copy. all tests pass R=rsc, dsymonds1 CC=dsymonds http://codereview.appspot.com/1908042
diff --git a/compiler/testdata/main.go b/compiler/testdata/main.go index 29100be..ed81320 100644 --- a/compiler/testdata/main.go +++ b/compiler/testdata/main.go
@@ -39,6 +39,6 @@ ) func main() { - _ = my_test.NewRequest() - _ = multitest.NewMulti1() + _ = &my_test.Request{} + _ = &multitest.Multi1{} }