2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1066-3.cs
blob84af75a05c1da70113ac144f1c07f187a8ba6ef4
1 // CS1066: The default value specified for optional parameter `x' will never be used
2 // Line: 12
3 // Compiler options: -warnaserror -langversion:future
5 interface I
7 void Method (int i);
10 class C : I
12 void I.Method (int x = 9)