go/test/interface1.go

36 lines
605 B
Go
Raw Normal View History

// 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
2009-01-20 22:40:40 +00:00
type Inst interface {
Next() *Inst;
}
2009-01-20 22:40:40 +00:00
type Regexp struct {
code []Inst;
start Inst;
}
2009-01-20 22:40:40 +00:00
type Start struct {
foo *Inst;
}
func (start *Start) Next() *Inst { return nil }
2009-01-20 22:40:40 +00:00
func AddInst(Inst) *Inst {
print("ok in addinst\n");
return nil
}
func main() {
2009-01-06 23:19:02 +00:00
re := new(Regexp);
print("call addinst\n");
2009-01-06 23:19:02 +00:00
var x Inst = AddInst(new(Start)); // ERROR "illegal|incompatible"
print("return from addinst\n");
}