2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / errors / cs1736.cs
1 // CS1736: The expression being assigned to optional parameter `v' must be a constant or default value
2 // Line: 8
3 // Compiler options: -langversion:future
4
5 public class C
6 {
7         static int Value = 9;
8
9         public static void Test (int v = Value)
10         {
11         }
12 }