Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug250.go
blobcd28642bfc95d935217658c637f0a3ce7cf229b3
1 // $G $D/$F.go || echo BUG: bug250
3 // Copyright 2010 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.
7 package main
9 type I1 interface {
10 m() I2
13 type I2 interface {
17 var i1 I1 = i2
18 var i2 I2
19 var i2a I2 = i1