Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1750-2.cs
1 // CS1750: Optional parameter expression of type `S' cannot be converted to parameter type `C'
2 // Line: 10
3
4 struct S
5 {
6 }
7
8 class C
9 {
10         public static void Test (C c = new S ())
11         {
12         }
13 }