Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-258.cs
1 using System;
2
3 // Without namespace, this error does not happen.
4 namespace MyTest
5 {
6         public class Test
7         {
8                 public interface Inner
9                 {
10                         void Foo ();
11                 }
12         }
13
14         public class Test2 : MarshalByRefObject, Test.Inner
15         {
16                 // This is OK: public void Foo ()
17                 void Test.Inner.Foo ()
18                 {
19                 }
20
21                 public static void Main ()
22                 { }
23         }
24 }