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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2005-04-11 16:49:31 +0400
committerMarek Safar <marek.safar@gmail.com>2005-04-11 16:49:31 +0400
commitab97f82d27b44c23fc5e1e94df6e8441dd0c45d2 (patch)
tree1346964c5e36d72960e0c6d8b802e4f4e1c64d6a /mcs/tests/test-362.cs
parent146b74cd24f322c37f01ce0af7d8aa4be0a29cef (diff)
2005-04-11 Marek Safar <marek.safar@seznam.cz>
* test-362.cs: #74565 test case. svn path=/trunk/mcs/; revision=42784
Diffstat (limited to 'mcs/tests/test-362.cs')
-rw-r--r--mcs/tests/test-362.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/mcs/tests/test-362.cs b/mcs/tests/test-362.cs
new file mode 100644
index 00000000000..e80d6ca69ce
--- /dev/null
+++ b/mcs/tests/test-362.cs
@@ -0,0 +1,30 @@
+class C
+{
+ static void Main()
+ {
+ try {
+ Test ();
+ } catch
+ {
+ }
+ }
+
+ static void Test ()
+ {
+ try
+ {
+ throw new System.ArgumentException();
+ }
+ catch
+ {
+ try
+ {
+ throw;
+ }
+ finally
+ {
+
+ }
+ }
+ }
+}