2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-501.cs
blob4329ac946e4d97f77e32d8ae1566663d3d0c9a82
1 using System;
3 public class Tests {
5 public delegate bool FilterStackFrame(object o);
7 public static void DumpException(FilterStackFrame fsf) {
10 public static void foo (out bool continueInteraction) {
11 continueInteraction = false;
13 try {
15 catch (Exception ex) {
16 DumpException(delegate(object o) {
17 return true;
18 });
22 public static void Main (String[] args) {
23 bool b;
25 foo (out b);