2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-258.cs
blob5685b07acfec89ef589aa5d9f280ffea74fbd21c
1 using System;
3 // Without namespace, this error does not happen.
4 namespace MyTest
6 public class Test
8 public interface Inner
10 void Foo ();
14 public class Test2 : MarshalByRefObject, Test.Inner
16 // This is OK: public void Foo ()
17 void Test.Inner.Foo ()
21 static void Main ()
22 { }