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

cs1737.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50877f9e8ba30e65086abc293eb32c54c5df6a13 (plain)
1
2
3
4
5
6
7
8
9
// CS1737: Optional parameter cannot precede required parameters
// Line: 6

class C
{
	public static void Test (byte a = 1, int u)
	{
	}
}