1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// CS0266: Cannot implicitly convert type `I' to `C'. An explicit conversion exists (are you missing a cast?) // Line: 16 interface I { } struct C : I { } class X { static void Main (string[] args) { C c = default (I); } }