1// Copyright 2012 The Go Authors.  All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package one
6
7type T1 int
8type T2 []T1
9type T3 T2
10
11func F1(T2) {
12}
13
14func (p *T1) M1() T3 {
15	return nil
16}
17
18func (p T3) M2() {
19}
20