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

cs1615.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18a5c169037388d7d3a2a52c5ee10624861f76e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1615: Argument '1' should not be passed with the 'ref' keyword
// Line: 11

class C
{
	public static void test (int i) {}

	public static void Main()
	{
		int i = 1;
		test (ref i);
	}
}