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

cs8173.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c7d894ad6e43ff067db9a5f9dd0843cf6f1dff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS8173: The expression must be of type `long' because it is being assigned by reference
// Line: 11

public class X
{
	int field;

	public static void Main ()
	{
		int i = 5;
		ref long j = ref i;
	}
}