mirror of
https://github.com/golang/go
synced 2025-06-12 17:11:51 +00:00
test: remove semiocolons.
The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev https://golang.org/cl/2157041
This commit is contained in:
test
64bit.goassign.gobigalg.goblank.goblank1.go
chan
char_lit.goclosedchan.gocmp2.gocmp3.gocmp4.gocmp5.gocomplit.gocompos.goconst.goconst1.goconst2.goconvlit.godecl.godeclbad.goenv.goescape.gofloat_lit.gofor.gofunc.gofunc1.gofunc2.gofunc3.gofunc4.gogc.gogc1.gohashmap.gohelloworld.goif.goif1.goimport.goimport1.goindirect1.goinitialize.goinitializerr.goinitsyscall.goint_lit.gointerface
bigdata.goconvert1.goconvert2.goembed.goembed0.goembed1.gofail.gofake.goreceiver.goreturntype.gostruct.go
iota.goliteral.gomallocrand.gomallocrep.gomap.gomethod1.gonil.gonilptr
arrayindex.goarrayindex1.goarraytoslice.goarraytoslice1.goarraytoslice2.goslicearray.gostructfield.gostructfield1.gostructfield2.gostructfieldaddr.go
nul1.goparentype.goprintbig.goruntime.gosieve.gosigchld.gosinit.gostring_lit.gostringrange.goswitch.goswitch1.gotest0.gotypeswitch.goutf.go@ -7,17 +7,17 @@
|
||||
package main
|
||||
|
||||
type S struct {
|
||||
A, B, C, X, Y, Z int;
|
||||
A, B, C, X, Y, Z int
|
||||
}
|
||||
|
||||
type T struct {
|
||||
S;
|
||||
S
|
||||
}
|
||||
|
||||
var x = 1
|
||||
var a1 = S { 0, X: 1 }; // ERROR "mixture|undefined"
|
||||
var a2 = S { Y: 3, Z: 2, Y: 3 }; // ERROR "duplicate"
|
||||
var a3 = T { 1, 2, 3, 4, 5, 6 }; // ERROR "convert|too many"
|
||||
var a1 = S { 0, X: 1 } // ERROR "mixture|undefined"
|
||||
var a2 = S { Y: 3, Z: 2, Y: 3 } // ERROR "duplicate"
|
||||
var a3 = T { 1, 2, 3, 4, 5, 6 } // ERROR "convert|too many"
|
||||
var a4 = [5]byte{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 } // ERROR "index|too many"
|
||||
var a5 = []byte { x: 2 } // ERROR "index"
|
||||
|
||||
|
Reference in New Issue
Block a user