1
0
mirror of https://github.com/golang/go synced 2024-09-25 07:20:12 -06:00
go/test/fixedbugs/bug111.go
Russ Cox 08ca30bbfa change *map to map; *chan to chan; new(T) to new(*T)
fix bugs left over from *[] to [] conversion.

TBR=r
OCL=21576
CL=21581
2008-12-19 03:05:37 -08:00

33 lines
509 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")
}
}