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:
authorGert Driesen <drieseng@users.sourceforge.net>2006-11-19 12:32:53 +0300
committerGert Driesen <drieseng@users.sourceforge.net>2006-11-19 12:32:53 +0300
commitfb9ec137f807c717596e7e888c57d1985763d0d7 (patch)
tree292f20b3d9f9122834f7631daf3daa5c154f2863 /mcs/tests/gtest-297.cs
parentbbbe1592e3a3ff80a2d6690c29f63091a26bc526 (diff)
* test-539.cs, gtest-297.cs: Added tests for bug #79810.
* known-issues-gmcs: Ignore test-539.cs for gmcs. svn path=/trunk/mcs/; revision=68144
Diffstat (limited to 'mcs/tests/gtest-297.cs')
-rw-r--r--mcs/tests/gtest-297.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/mcs/tests/gtest-297.cs b/mcs/tests/gtest-297.cs
new file mode 100644
index 00000000000..3b95662e983
--- /dev/null
+++ b/mcs/tests/gtest-297.cs
@@ -0,0 +1,17 @@
+// Compiler options: -warnaserror -warn:4
+
+using System;
+using System.Runtime.CompilerServices;
+
+[assembly: RuntimeCompatibility (WrapNonExceptionThrows=false)]
+
+public class Test
+{
+ static void Main ()
+ {
+ try {
+ } catch (Exception) {
+ } catch {
+ }
+ }
+}