1 2 3 4 5 6 7 8 9 10 11 12
// CS0030: Cannot convert type `X' to `S' // Line: 10 struct S { } class X { static void Main () { S s = (S)default(X); } }