[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0104-4.cs
blob9072d99bb13f7a6a05572e61e3e03e45bc3c023f
1 // CS0104: `XAttribute' is an ambiguous reference between `A.XAttribute' and `B.XAttribute'
2 // Line: 21
4 using System;
6 namespace A
8 class XAttribute : Attribute { }
11 namespace B
13 class XAttribute : Attribute { }
16 namespace C
18 using A;
19 using B;
21 [X]
22 class Test