blob: a899c7654ea03f184646371590d4bf7388d75d95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0031: Constant value `256' cannot be converted to a `byte'
// Line : 7
public class Blah {
public enum MyEnum : byte {
Foo = 256,
Bar
}
public static void Main ()
{
}
}
|