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

cs0851.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0af3958d63f5ee30c5733635e4539b0d1207d95f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0851: Overloaded contructor `Test.Test(out int)' cannot differ on use of parameter modifiers only
// Line: 10

public class Test
{
	public Test (ref int i)
	{
	}
	
	public Test (out int i)
	{
	}
}