Source file test/fixedbugs/bug089.go
1 // compile 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 7 package main 8 9 type I1 interface {} 10 type I2 interface { pr() } 11 12 func e() I1; 13 14 var i1 I1; 15 var i2 I2; 16 17 func 18 main() { 19 20 i2 = e().(I2); // bug089.go:16: fatal error: agen_inter i2i 21 } 22