[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / gtest-iter-21.cs
blob5265dd4cb39ec0706b9ff2fbd96632063f480be8
1 using System;
2 using System.Collections.Generic;
4 class C
6 IEnumerable<int> Test ()
8 Console.WriteLine ("init");
9 try {
10 yield return 1;
11 } finally {
12 int oo = 4;
13 Action a = () => Console.WriteLine (oo);
16 yield return 2;
19 public static int Main ()
21 var c = new C ();
22 foreach (var a in c.Test ())
26 return 0;