[threadpool] Pass callback at initialization (#4546)
[mono.git] / mcs / errors / cs0019-21.cs
1 // CS0019: Operator `+' cannot be applied to operands of type `AA' and `uint'
2 // Line: 11
3
4 enum AA : byte { a, b = 200 }
5
6 public class C
7 {
8         public static void Main ()
9         {
10                 const uint ul = 1;
11                 AA b = AA.a + ul;
12         }
13 }