1// Copyright 2011 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 p 6 7type T struct{ x int } 8type S struct{} 9 10func (p *S) get() { 11} 12 13type I interface { 14 get() 15} 16 17func F(i I) { 18 i.get() 19} 20