mirror of
https://github.com/golang/go
synced 2024-11-12 01:50:22 -07:00
bc5620c2e0
bug117.go:13:12: error: reference to undefined field or method import1.go:9:2: error: redefinition of '.main.bufio' import1.go:8:2: note: previous definition of '.main.bufio' was here import1.go:9:2: error: incompatible imported type 'bufio.Error' interface9.go:25:5: error: incompatible types in assignment (method P requires a pointer) interface9.go:30:5: error: incompatible types in assignment (method P requires a pointer) R=rsc DELTA=5 (0 added, 0 deleted, 5 changed) OCL=29044 CL=29055
26 lines
533 B
Go
26 lines
533 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2009 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.
|
|
|
|
package main
|
|
type S struct { a int }
|
|
type PS *S
|
|
func (p *S) get() int {
|
|
return p.a
|
|
}
|
|
|
|
func fn(p PS) int {
|
|
// p has type PS, and PS has no methods.
|
|
// (a compiler might see that p is a pointer
|
|
// and go looking in S without noticing PS.)
|
|
return p.get() // ERROR "undefined"
|
|
}
|
|
func main() {
|
|
s := S{1};
|
|
if s.get() != 1 {
|
|
panic()
|
|
}
|
|
}
|