1
0
mirror of https://github.com/golang/go synced 2024-09-25 15:10:11 -06:00
go/test/fixedbugs/bug111.go
Rob Pike 151c0de8bc update bug list
R=ken
OCL=17169
CL=17169
2008-10-14 19:41:05 -07:00

33 lines
508 B
Go

// $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG should compile and run
// 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
var ncall int;
export type Iffy interface {
Me() Iffy
}
export type Stucky struct {
n int
}
func (s *Stucky) Me() Iffy {
ncall++;
return s
}
func main() {
s := new(Stucky);
i := s.Me();
j := i.Me();
j.Me();
if ncall != 3 {
panic("bug111")
}
}