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

cs8124.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7d04160b8484c1f97a58925ef9f78edc32fc91a (plain)
1
2
3
4
5
6
7
8
9
// CS8124: Tuple must contain at least two elements
// Line: 6

class X
{
	static (int) Foo ()
	{
	}
}