]> Cypherpunks repositories - gostls13.git/commitdiff
test: gofmt fixedbugs/issue10975.go
authorShenghou Ma <minux@golang.org>
Sun, 4 Oct 2015 01:23:23 +0000 (21:23 -0400)
committerMinux Ma <minux@golang.org>
Tue, 6 Oct 2015 06:56:11 +0000 (06:56 +0000)
Change-Id: I772d1bc3e394cdd707f210f2aaff77100d299e24
Reviewed-on: https://go-review.googlesource.com/15380
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
test/fixedbugs/issue10975.go

index 0a4b7be2a81a2b5e90842e58e5254100ddb4ef5e..1aa7d891777747908b883f58b8330d1d34bfd440 100644 (file)
@@ -4,16 +4,15 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// Issue 10975: Returning an invalid interface would cause 
-// `internal compiler error: getinarg: not a func`. 
+// Issue 10975: Returning an invalid interface would cause
+// `internal compiler error: getinarg: not a func`.
 
 package main
 
 type I interface {
-       int     // ERROR "interface contains embedded non-interface int"
+       int // ERROR "interface contains embedded non-interface int"
 }
 
 func New() I {
        return struct{}{}
 }
-