[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0037-7.cs
1 // CS0037: Cannot convert null to `char' because it is a value type
2 // Line: 12
3
4 class C
5 {
6         static void Test ()
7         {
8                 char c = 'c';
9                 switch (c)
10                 {
11                         case 'a': 
12                                 goto case null;
13                 }
14         }
15 }