1 2 3 4 5 6 7 8 9
// CS1750: Optional parameter expression of type `string' cannot be converted to parameter type `int' // Line: 6 public class C { public C (int a = "a") { } }