[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs1066-4.cs
blobc8b30fff252617feafd5036aee7a29d1306e4ebd
1 // CS1066: The default value specified for optional parameter `i' will never be used
2 // Line: 7
3 // Compiler options: -warnaserror
5 class C
7 public static implicit operator C (int i = 8)
9 return null;