Fix the test
[mono.git] / mcs / errors / cs0037.cs
1 //cs0037.cs: Can not convert null to struct because its a value type
2 // Line: 10
3 struct S {
4         int a;
5 }
6
7 class X {
8         static void Main ()
9         {
10                 S s = (S) null;
11         }
12 }