Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-501.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4329ac946e4d97f77e32d8ae1566663d3d0c9a82 (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
25
26
27
using System;

public class Tests {

	public delegate bool FilterStackFrame(object o);

	public static void DumpException(FilterStackFrame fsf) {
	}

	public static void foo (out bool continueInteraction) {
		continueInteraction = false;

		try {
		}
		catch (Exception ex) {
			DumpException(delegate(object o) {
				return true;
			});
		}
	}

	public static void Main (String[] args) {
		bool b;

		foo (out b);
	}
}