2011-07-28 10:31:16 -06:00
|
|
|
// errchk $G $D/$F.go
|
|
|
|
|
|
|
|
// Copyright 2011 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.
|
|
|
|
|
|
|
|
// issue 1910
|
|
|
|
// error on wrong line
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "container/list"
|
|
|
|
|
|
|
|
type Painting struct {
|
|
|
|
fragments list.List // private
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Painting) Foo() {
|
2011-09-20 17:47:17 -06:00
|
|
|
for e := p.fragments; e.Front() != nil; { // ERROR "unexported field|hidden field"
|
2011-07-28 10:31:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// from comment 4 of issue 1910
|
|
|
|
type Foo interface {
|
2011-09-20 17:47:17 -06:00
|
|
|
Run(a int) (a int) // ERROR "a redeclared|redefinition|previous"
|
2011-07-28 10:31:16 -06:00
|
|
|
}
|