mirror of
https://github.com/golang/go
synced 2024-11-21 22:34:48 -07:00
6g bug: no need for parens around array index expression
where index is a composite literal R=rsc CC=golang-dev https://golang.org/cl/961044
This commit is contained in:
parent
48ccf8247e
commit
d971f71703
22
test/bugs/bug267.go
Normal file
22
test/bugs/bug267.go
Normal file
@ -0,0 +1,22 @@
|
||||
// $G $D/$F.go || echo BUG
|
||||
|
||||
// Copyright 2010 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package main
|
||||
|
||||
type T []int
|
||||
|
||||
var a []bool
|
||||
|
||||
func _() {
|
||||
if a[T{42}[0]] {
|
||||
}
|
||||
// if (a[T{42}[0]]) {} // this compiles
|
||||
}
|
||||
|
||||
/*
|
||||
6g bugs/bug267.go
|
||||
bugs/bug267.go:14: syntax error: unexpected {, expecting :
|
||||
*/
|
@ -185,3 +185,7 @@ panic: barCount != 1
|
||||
|
||||
panic PC=xxx
|
||||
BUG
|
||||
|
||||
=========== bugs/bug267.go
|
||||
bugs/bug267.go:14: syntax error: unexpected {, expecting :
|
||||
BUG
|
||||
|
Loading…
Reference in New Issue
Block a user