Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0019-10.cs
1 // CS0019: Operator `-' cannot be applied to operands of type `A' and `B'
2 // Line : 20
3
4 enum A
5 {
6         A1,
7         A2
8 }
9
10 enum B
11 {
12         B1,
13         B2
14 }
15
16 class C
17 {
18         static void Main ()
19         {
20                 System.Console.WriteLine (A.A1 - B.B1);
21         }
22 }