summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1107.cs
blob: 2e00866d170fec4b3fccc25fe11f753b112e0e15 (plain)
1
2
3
4
5
6
7
8
9
// CS1107: Duplicate parameter modifier `ref'
// Line: 6

static class S
{
	static void Foo (ref ref ulong u)
	{
	}
}