mirror of
https://github.com/golang/go.git
synced 2025-11-01 01:00:56 +00:00
convert composite literals from { } to ( ).
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
This commit is contained in:
parent
07244f7c80
commit
9f8f2e6130
92 changed files with 1598 additions and 1600 deletions
|
|
@ -7,7 +7,7 @@ package main
|
|||
import fd "fd"
|
||||
|
||||
func main() {
|
||||
hello := []byte{'h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '\n'};
|
||||
hello := []byte('h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '\n');
|
||||
fd.Stdout.Write(hello);
|
||||
file, err := fd.Open("/does/not/exist", 0, 0);
|
||||
if file == nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue