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>2004-09-15 18:22:22 +0400
committerMarek Safar <marek.safar@gmail.com>2004-09-15 18:22:22 +0400
commite18bb53e87b0a3c67c2db78ff861fc4b43e787fe (patch)
treeb6ef5b9b5063e43d4af5697a5f7d37a00561b03f /mcs/errors/cs1017-2.cs
parentd1c5d6001162e27ae89c5dbc3c073ebd7f27e495 (diff)
new test + update
svn path=/trunk/mcs/; revision=33937
Diffstat (limited to 'mcs/errors/cs1017-2.cs')
-rw-r--r--mcs/errors/cs1017-2.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs1017-2.cs b/mcs/errors/cs1017-2.cs
new file mode 100644
index 00000000000..98b8f509983
--- /dev/null
+++ b/mcs/errors/cs1017-2.cs
@@ -0,0 +1,10 @@
+// cs1017.cs: Try statement already has an empty catch block
+// Line: 8
+
+class ClassMain {
+ public static void Main() {
+ try { }
+ catch {}
+ catch {}
+ }
+}