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>2007-12-20 12:09:05 +0300
committerMarek Safar <marek.safar@gmail.com>2007-12-20 12:09:05 +0300
commitfb1b572452fa1b92e23868f69992d042dc378241 (patch)
treea715ada532f7356d0d5747c93ae65fbbc32eafb2 /mcs/tests/test-anon-73.cs
parent28dd175764184d6c298d92ecbcc48d1f09f42db1 (diff)
Fixed wrong test.
svn path=/trunk/mcs/; revision=91682
Diffstat (limited to 'mcs/tests/test-anon-73.cs')
-rw-r--r--mcs/tests/test-anon-73.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/mcs/tests/test-anon-73.cs b/mcs/tests/test-anon-73.cs
index dbe0a50ea72..182d2d35d6f 100644
--- a/mcs/tests/test-anon-73.cs
+++ b/mcs/tests/test-anon-73.cs
@@ -1,17 +1,18 @@
using System;
using System.Threading;
+delegate void D (object o);
+
class T {
static void Main () {
- new Thread (delegate (object state) {
+ D d = delegate (object state) {
try {
} catch {
throw;
} finally {
}
- });
- }
-
+ };
+ }
}