cleol
[mcs.git] / errors / cs0037.cs
blob0dd93e9a1afde95fd0ca2472b4c84f89ebad0df3
1 // cs0037.cs: Cannot convert null to `S' because it is a value type
2 // Line: 10
3 struct S {
4 int a;
7 class X {
8 static void Main ()
10 S s = (S) null;