[System.Runtime.Remoting] Adds System.Core reference for tests
[mono.git] / mcs / errors / cs1750.cs
1 // CS1750: Optional parameter expression of type `string' cannot be converted to parameter type `int'
2 // Line: 6
3
4 public class C
5 {
6         public C (int a = "a")
7         {
8         }
9 }