Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs0221-10.cs
blob7ad8b28b9c7cd7e5de5643a381411841eb0cfbc7
1 // CS0221: Constant value `-200' cannot be converted to a `byte' (use `unchecked' syntax to override)
2 // Line: 6
4 enum AA : byte { a, b = 200 }
6 public class C
8 public static void Main ()
10 const int b = AA.a - AA.b;