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

cs1107.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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)
	{
	}
}