blob: 4d679e2f3473636f473dedadec48c1e63a3d119b [file] [log] [blame]
Ian Lance Taylor5261be22009-08-21 17:42:41 -07001// errchk $G $D/$F.go
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9type I1 interface { I2 } // ERROR "interface"
10type I2 int
11
12type I3 interface { int } // ERROR "interface"