mirror of
https://github.com/golang/go
synced 2024-11-19 07:54:43 -07:00
cc2157ed4f
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
28 lines
731 B
Go
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"
|