Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[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
4 public class C
5 {
6         static int Value = 9;
7
8         public static void Test (int v = Value)
9         {
10         }
11 }