2012-02-16 21:49:59 -07:00
|
|
|
// errorcheck
|
2010-08-03 01:53:32 -06:00
|
|
|
|
|
|
|
// 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
|
2011-01-19 21:09:00 -07:00
|
|
|
*float64
|
2010-08-03 01:53:32 -06:00
|
|
|
// not legal according to spec
|
2011-01-19 21:09:00 -07:00
|
|
|
(complex128) // ERROR "non-declaration|expected|parenthesize"
|
2010-08-03 01:53:32 -06:00
|
|
|
(*string) // ERROR "non-declaration|expected|parenthesize"
|
|
|
|
*(bool) // ERROR "non-declaration|expected|parenthesize"
|
|
|
|
}
|
|
|
|
|
|
|
|
// legal according to spec
|
|
|
|
func (p T) m() {}
|
|
|
|
|
2014-06-25 07:57:48 -06:00
|
|
|
// now legal according to spec
|
|
|
|
func (p (T)) f() {}
|
|
|
|
func (p *(T)) g() {}
|
|
|
|
func (p (*T)) h() {}
|
|
|
|
func (p (*(T))) i() {}
|
|
|
|
func ((T),) j() {}
|