Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-501.cs
1 using System;
2
3 public class Tests {
4
5         public delegate bool FilterStackFrame(object o);
6
7         public static void DumpException(FilterStackFrame fsf) {
8         }
9
10         public static void foo (out bool continueInteraction) {
11                 continueInteraction = false;
12
13                 try {
14                 }
15                 catch (Exception ex) {
16                         DumpException(delegate(object o) {
17                                 return true;
18                         });
19                 }
20         }
21
22         public static void Main (String[] args) {
23                 bool b;
24
25                 foo (out b);
26         }
27 }