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

cs1741.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aaf19309e09f1dc7bad6fe450d8ccc5bc0fb162b (plain)
1
2
3
4
5
6
7
8
9
// CS1741: Cannot specify a default value for the `ref' parameter
// Line: 6

public class C
{
	public void Test (ref bool a = true)
	{
	}
}