[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0019-10.cs
blob51d47a8903c52b1e6b01f79f8562d0ae121fdfb5
1 // CS0019: Operator `-' cannot be applied to operands of type `A' and `B'
2 // Line : 20
4 enum A
6 A1,
7 A2
10 enum B
12 B1,
16 class C
18 static void Main ()
20 System.Console.WriteLine (A.A1 - B.B1);