* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0037.cs
1 // cs0037.cs: Cannot convert null to `S' because it is 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 }