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

cs8150.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd4ef7a2db085d5b3fca59a4d6bd1f599f3a556d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS8150: By-reference return is required when method returns by reference
// Line: 10

class A
{
	int p;

	ref int Test ()
	{
		return p;
	}
}