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

cs1599-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b430178325f152e18b2956a29ecee4db643a94e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1599-2.cs: Method or delegate cannot return type `System.ArgIterator'
// Line: 8

using System;

class C
{
	public ArgIterator Method ()
	{
		return null;
	}
}