summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1624-2.cs
blob: 763e4d4a44439c5d5a7a2836f7c1f95fb29441d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// CS1624: 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;		
	    }	    
	}
}