2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[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 -langversion:future
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 }