2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0037-4.cs
blob84556c8fd2d186cef9e0a0e8d55bc5b6cf6a112a
1 // cs0037-4.cs: Cannot convert null to `int' because it is a value type
2 // Line: 9
4 class X {
5 static void Main ()
7 int s = 44;
8 switch (s) {
9 case null: break;