[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1736.cs
blob3d070181e374ef1c0e3c04c8640f4c17e80701e4
1 // CS1736: The expression being assigned to optional parameter `v' must be a constant or default value
2 // Line: 8
4 public class C
6 static int Value = 9;
8 public static void Test (int v = Value)