Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1066-2.cs
1 // CS1066: The default value specified for optional parameter `s' will never be used
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 public partial class C
6 {
7         partial void Test (int u, string s);
8         
9         partial void Test (int u, string s = "optional")
10         {
11         }
12 }