2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-714.cs
blob02604a0b792827576b5cfc0802e3e849a293e1c1
1 using System;
3 class Hello : IFoo
5 void IBar.Test ()
9 static void Main ()
14 interface IBar
16 void Test ();
19 interface IFoo : IBar