2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-10.cs
blob038f9422b075bae532f0b8d29eee624840361c4e
1 // cs0019-10.cs: 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);