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-18 14:47:12 +0400
committerMarek Safar <marek.safar@gmail.com>2005-04-18 14:47:12 +0400
commitfe5e73c9d990eeb4b5d61e218a6af6a715eab20f (patch)
tree593d814173698ed8e7183c22bc4d1d4fa93de77c /mcs/tests/test-368.cs
parent86f7e3d6c9ade69754c8da33621128b11140ee07 (diff)
Update after #74565
svn path=/trunk/mcs/; revision=43205
Diffstat (limited to 'mcs/tests/test-368.cs')
-rw-r--r--mcs/tests/test-368.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-368.cs b/mcs/tests/test-368.cs
new file mode 100644
index 00000000000..b8bc6c916d7
--- /dev/null
+++ b/mcs/tests/test-368.cs
@@ -0,0 +1,15 @@
+class X {
+
+ static void Main ()
+ {
+ int n = 0;
+
+ try {
+ } finally {
+ switch (n){
+ case 0:
+ break;
+ }
+ }
+ }
+}