Merge branch 'master' into msbuilddll2
[mono.git] / mcs / errors / cs0104-4.cs
1 // CS0104: `XAttribute' is an ambiguous reference between `A.XAttribute' and `B.XAttribute'
2 // Line: 21
3
4 using System;
5
6 namespace A
7 {
8         class XAttribute : Attribute { }
9 }
10
11 namespace B
12 {
13         class XAttribute : Attribute { }
14 }
15
16 namespace C
17 {
18         using A;
19         using B;
20
21         [X]
22         class Test 
23         {
24         }
25 }