2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0019-21.cs
blobd8ca656da8fa95ac15af218862c2b1d212a76e3c
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 const AA b = AA.a + ul;