mirror of
https://github.com/golang/go
synced 2025-06-05 16:20:44 +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@ -13,12 +13,12 @@ type I interface {
|
||||
}
|
||||
|
||||
func main() {
|
||||
var s *S;
|
||||
var i I;
|
||||
var e interface {};
|
||||
e = s;
|
||||
i = e.(I);
|
||||
_ = i;
|
||||
var s *S
|
||||
var i I
|
||||
var e interface {}
|
||||
e = s
|
||||
i = e.(I)
|
||||
_ = i
|
||||
}
|
||||
|
||||
// hide S down here to avoid static warning
|
||||
|
Reference in New Issue
Block a user