summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1741.cs
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)
	{
	}
}