13 lines
156 B
C#
Raw Normal View History

// CS0037: Cannot convert null to `S' because it is a value type
// Line: 10
struct S {
int a;
}
class X {
static void Main ()
{
S s = (S) null;
}
}