summaryrefslogtreecommitdiff
path: root/mcs/tests/test-debug-21.cs
blob: 76727b516340ba1f3267dfb48a26000aaa82e43b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;

class C
{
	IEnumerable<int> Test ()
	{
		Console.WriteLine ("init");
		try
		{
			yield return 1;
		}
		finally
		{
			Console.WriteLine ("aa");
		}
		
		yield return 2;
	}

	public static void Main ()
	{
	}
}