Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / test-iter-19.cs
bloba3e73857cf3cf658a895c3bd7a7df4caa09bcec7
1 using System;
2 using System.Collections;
4 public class Test
6 public static void Main ()
8 foreach (object o in new Test ())
9 Console.WriteLine (o);
12 public IEnumerator GetEnumerator ()
14 int i = 2;
15 yield return 3;