Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / test-debug-06.cs
blob2e0c6223f2ecad12b2d6caf7de41bcb4ecab3056
1 using System;
3 class Test
5 public static void Main ()
9 void TryCatch_1 ()
11 try
14 catch
19 void TryCatch_2 ()
21 try
24 catch (Exception e)
26 e = null;
30 void TryCatch_3 ()
32 try
35 catch (ArgumentException e)
37 e = null;
39 catch (Exception e)
41 return;
45 void TryFinally_1 ()
47 try
50 finally
55 void TryFinally_2 ()
57 try
60 catch (Exception e)
62 e = null;
64 finally