1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:20:16 -06:00
go/test/fixedbugs/bug121.go

19 lines
326 B
Go
Raw Normal View History

// errorcheck
// 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
type T func()
2009-01-20 15:40:40 -07:00
type I interface {
f, g (); // ERROR "name list not allowed"
}
type J interface {
h T; // ERROR "syntax|signature"
}