Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / ken / interfun.go
blob94bc7eaada67d1dbc579e9304674348b6aa5e4cf
1 // $G $D/$F.go && $L $F.$A && ./$A.out
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.
7 package main
9 type S struct {
10 a,b int;
13 type I1 interface {
14 f ()int;
17 type I2 interface {
18 g() int;
19 f() int;
22 func (this *S) f()int {
23 return this.a;
26 func (this *S) g()int {
27 return this.b;
30 func
31 main() {
32 var i1 I1;
33 var i2 I2;
34 var g *S;
36 s := new(S);
37 s.a = 5;
38 s.b = 6;
40 // call structure
41 if s.f() != 5 { panic(11); }
42 if s.g() != 6 { panic(12); }
44 i1 = s; // convert S to I1
45 i2 = i1.(I2); // convert I1 to I2
47 // call interface
48 if i1.f() != 5 { panic(21); }
49 if i2.f() != 5 { panic(22); }
50 if i2.g() != 6 { panic(23); }
52 g = i1.(*S); // convert I1 to S
53 if g != s { panic(31); }
55 g = i2.(*S); // convert I2 to S
56 if g != s { panic(32); }