From: Shenghou Ma Date: Sun, 4 Oct 2015 01:23:23 +0000 (-0400) Subject: test: gofmt fixedbugs/issue10975.go X-Git-Tag: go1.6beta1~901 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=48b1e6bc97818958dec084c4ecb2fc94257deee2;p=gostls13.git test: gofmt fixedbugs/issue10975.go Change-Id: I772d1bc3e394cdd707f210f2aaff77100d299e24 Reviewed-on: https://go-review.googlesource.com/15380 Reviewed-by: Brad Fitzpatrick --- diff --git a/test/fixedbugs/issue10975.go b/test/fixedbugs/issue10975.go index 0a4b7be2a8..1aa7d89177 100644 --- a/test/fixedbugs/issue10975.go +++ b/test/fixedbugs/issue10975.go @@ -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{}{} } -