2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1066-4.cs
blob024848b61f9b0f6391ce3bbcc9a3abf8fa5b1a5c
1 // CS1066: The default value specified for optional parameter `i' will never be used
2 // Line: 7
3 // Compiler options: -warnaserror -langversion:future
5 class C
7 public static implicit operator C (int i = 8)
9 return null;