summaryrefslogtreecommitdiff
path: root/src/pkg/go/types/testdata/decls2b.src
blob: c7f9ddf01add6c2702a60743f24a914b46f889a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2012 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.

// method declarations

package decls2

const pi = 3.1415

func (T1) m /* ERROR "redeclared" */ () {}

type T3 struct {
	f *T3
}

type T6 struct {
	x int
}

func (t *T6) m1() int {
	return t.x
}

func f() {
	var t *T6
	t.m1()
}