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:
authorMiguel de Icaza <miguel@gnome.org>2007-12-12 07:48:02 +0300
committerMiguel de Icaza <miguel@gnome.org>2007-12-12 07:48:02 +0300
commit4b4c5700c2d5f549b46c50bdb920ab96e8326ab5 (patch)
tree242b77324be7dad688c5464b7eef8b111a10b3cc /mcs/tests/test-anon-73.cs
parente89a44d04a3188b73ba9e4bde21b1a261477d215 (diff)
Add new test
svn path=/trunk/mcs/; revision=91140
Diffstat (limited to 'mcs/tests/test-anon-73.cs')
-rw-r--r--mcs/tests/test-anon-73.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/mcs/tests/test-anon-73.cs b/mcs/tests/test-anon-73.cs
new file mode 100644
index 00000000000..dbe0a50ea72
--- /dev/null
+++ b/mcs/tests/test-anon-73.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Threading;
+
+class T {
+ static void Main () {
+ new Thread (delegate (object state) {
+ try {
+ } catch {
+ throw;
+ } finally {
+ }
+ });
+ }
+
+}
+
+