Merge pull request #4816 from BrzVlad/fix-remoting-exception
[mono.git] / mcs / tests / test-466.cs
1 // Compiler options: -r:test-466-lib.dll
2
3 namespace A.X
4 {
5         using A.B;
6         
7         class Test
8         {
9                 public static void Main ()
10                 {
11                         C c = new C ();
12                         c.Foo ();
13                 }
14         }
15 }