summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0037-3.cs
blob: 69ce4fcdee38c4db0a6732dd80d72f64c2c0ff98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0037: Cannot convert null to `byte' because it is a value type
// Line : 7

public class Blah {

	public enum MyEnum : byte {
		Foo = null,
		Bar
	}

	public static void Main ()
	{
	}
}