1
0
mirror of https://github.com/golang/go synced 2024-09-24 05:10:13 -06:00
go/test/fixedbugs/bug299.go
Ian Lance Taylor cc2157ed4f test: Recognize gccgo error messages.
bug299.go:16:2: error: expected field name
bug299.go:17:2: error: expected field name
bug299.go:18:3: error: expected field name
bug299.go:25:9: error: expected receiver name or type
bug299.go:26:10: error: expected receiver name or type
bug299.go:27:9: error: expected receiver name or type

R=rsc
CC=golang-dev
https://golang.org/cl/2150044
2010-09-08 13:58:09 -07:00

28 lines
731 B
Go

// errchk $G $D/$F.go
// 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 struct {
// legal according to spec
x int
y (int)
int
*float
// not legal according to spec
(complex) // ERROR "non-declaration|expected|parenthesize"
(*string) // ERROR "non-declaration|expected|parenthesize"
*(bool) // ERROR "non-declaration|expected|parenthesize"
}
// legal according to spec
func (p T) m() {}
// not legal according to spec
func (p (T)) f() {} // ERROR "parenthesize|expected"
func (p *(T)) g() {} // ERROR "parenthesize|expected"
func (p (*T)) h() {} // ERROR "parenthesize|expected"