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

cs8160.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b4ea42c5ab7ab730a27603571f540d87c25cb6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS8160: A readonly field cannot be returned by reference
// Line: 10

class X
{
	readonly int f = 0;

	ref int Test ()
	{
		return ref f;
	}
}