New tests.
[mono.git] /
1 // CS1763: Optional parameter `c' of type `C' can only be initialized with `null'
2 // Line: 10
3 // Compiler options: -langversion:future
4
5 struct S
6 {
7 }
8
9 class C
10 {
11         public static void Test (C c = new S ())
12         {
13         }
14 }