diff options
author | Robert Griesemer <gri@golang.org> | 2010-02-24 13:24:37 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2010-02-24 13:24:37 -0800 |
commit | 25df35f2c7eda611664834fa15d158482d800de4 (patch) | |
tree | e81ca00f610f3f60e00d1914af60ee6f1c5ad714 /src/pkg/reflect/all_test.go | |
parent | 06b944d91954aaef6043546899972ad81feca159 (diff) | |
download | golang-25df35f2c7eda611664834fa15d158482d800de4.tar.gz |
gofmt: don't print ()'s around function-typed results (not needed anymore)
- add extra test cases to go/printer tests
- apply gofmt to src and misc
R=rsc
CC=golang-dev
http://codereview.appspot.com/223041
Diffstat (limited to 'src/pkg/reflect/all_test.go')
-rw-r--r-- | src/pkg/reflect/all_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/reflect/all_test.go b/src/pkg/reflect/all_test.go index 221ca06df..67bfe9eaf 100644 --- a/src/pkg/reflect/all_test.go +++ b/src/pkg/reflect/all_test.go @@ -146,7 +146,7 @@ var typeTests = []pair{ }, pair{struct { x (interface { - a(func(func(int) int) (func(func(int)) int)) + a(func(func(int) int) func(func(int)) int) b() }) }{}, |