2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0037-7.cs
blobb9ee407d650adcf93cb1d7e51fea4f3abbcb0deb
1 // CS0037: Cannot convert null to `char' because it is a value type
2 // Line: 12
4 class C
6 static void Test ()
8 char c = 'c';
9 switch (c)
11 case 'a':
12 goto case null;