2001-11-22 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / tests / test-15.cs
1 using System;
2
3 interface Iface {
4         void A ();
5 }
6
7 class Implementor : Iface {
8         public void A () {}
9 }
10
11 class Run {
12
13         static int Main ()
14         {
15                 Iface iface;
16                 Implementor i = new Implementor ();
17
18                 iface = i;
19                 
20                 return 0;
21         }
22 }