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

cs1624-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45ef0c59f7188cd089a7149bb46d665e3f7ce9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs1624-2.cs: The body of `X.this[int].set' cannot be an iterator block because `void' is not an iterator interface type
// Line: 15
using System;
using System.Collections;

class X
{
	IEnumerator this [int u]
	{
	    get {
		yield return 1;
		yield return 2;
		yield return 3;
	    }
	    set
	    {
		yield return 3;		
	    }	    
	}
}