Merge pull request #5675 from mono/glib-debug-symbols
[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 }