2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-21.cs
blob0e2a0cf820c769ca19956eb5e902f2b6867de3d5
1 // CS0019: Operator `+' cannot be applied to operands of type `AA' and `uint'
2 // Line: 11
4 enum AA : byte { a, b = 200 }
6 public class C
8 public static void Main ()
10 const uint ul = 1;
11 AA b = AA.a + ul;