Home | History | Annotate | Download | only in bug367.dir
      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 
      5 package p
      6 
      7 type T struct{ x int }
      8 type S struct{}
      9 
     10 func (p *S) get() {
     11 }
     12 
     13 type I interface {
     14 	get()
     15 }
     16 
     17 func F(i I) {
     18 	i.get()
     19 }
     20