Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1736.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d070181e374ef1c0e3c04c8640f4c17e80701e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1736: The expression being assigned to optional parameter `v' must be a constant or default value
// Line: 8

public class C
{
	static int Value = 9;

	public static void Test (int v = Value)
	{
	}
}