1
0
mirror of https://github.com/golang/go synced 2024-09-25 03:10:12 -06:00
go/test/interface1.go

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