Merge pull request #4816 from BrzVlad/fix-remoting-exception
[mono.git] / mcs / tests / test-818.cs
1 using System;
2
3 namespace A { class CAttribute : Attribute { } }
4 namespace B { class CAttribute : Attribute { } }
5
6 namespace Foo
7 {
8         using A;
9         using B;
10
11         using C = A.CAttribute;
12
13         [C]
14         class Foo
15         {
16                 public static void Main ()
17                 {
18                 }
19         }
20 }