summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1615.cs
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);
	}
}