blob: 9fc3532f1d671d15b6f1bd9683aff854760e70a6 [file] [log] [blame]
Russ Coxd2cc9882012-02-16 23:50:37 -05001// errorcheck
Russ Cox7dd90622012-02-11 01:21:12 -05002
Emmanuel Odeke53fd5222016-04-10 14:32:26 -07003// Copyright 2012 The Go Authors. All rights reserved.
Russ Cox7dd90622012-02-11 01:21:12 -05004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package p
8
9type T struct {
10 X int
11}
12
Ian Lance Taylor6ed800c2012-09-28 08:30:30 -070013func (t *T) X() {} // ERROR "type T has both field and method named X|redeclares struct field name"