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: 1fe406da20061599e83505543a460dc120c6323d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1615: Argument `#1' does not require `ref' modifier. Consider removing `ref' modifier
// Line: 11

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

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