Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0019-21.cs
blob8deee1fa55d830b71e9f9ceb1d80aa0906202e8f
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;