summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1579-4.cs
blob: 13e3f01c2080e93f2f2b020b7c84eb936aa106b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// CS1579: foreach statement cannot operate on variables of type `Foo' because it does not contain a definition for `GetEnumerator' or is inaccessible
// Line: 12

using System;
using System.Collections;

public class Test
{
	public static void Main ()
	{
		Foo f = new Foo ();
		foreach (object o in f)
			Console.WriteLine (o);
	}
}

public class Foo
{
	public Func<IEnumerator> GetEnumerator;
}