bug117 is fixed in 6g; now an errchk

R=r
DELTA=42  (20 added, 22 deleted, 0 changed)
OCL=28295
CL=28295
This commit is contained in:
Russ Cox 2009-05-05 13:41:46 -07:00
Родитель 9cba9c8890
Коммит b8dd218e2e
2 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@ -10,8 +10,12 @@ type PS *S
func (p *S) get() int {
return p.a
}
func fn(p PS) int {
return p.get()
// 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 DOT"
}
func main() {
s := S{1};

Просмотреть файл

@ -85,12 +85,6 @@ abcxyz-abcxyz-abcxyz-abcxyz-abcxyz-abcxyz-abcxyz
=========== chan/nonblock.go
PASS
=========== bugs/bug117.go
bugs/bug117.go:9: undefined DOT get on PS
bugs/bug117.go:9: illegal types for operand: RETURN
int
BUG: should compile
=========== bugs/bug132.go
BUG: compilation succeeds incorrectly