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:
Diffstat (limited to 'mcs/errors/bug4.cs')
-rwxr-xr-xmcs/errors/bug4.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/errors/bug4.cs b/mcs/errors/bug4.cs
deleted file mode 100755
index 775cfe30349..00000000000
--- a/mcs/errors/bug4.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-//
-// Fixed
-//
-using System;
-
-class X {
- static void Main ()
- {
- try {
- throw new Exception ();
- } catch (Exception e) {
- Console.WriteLine ("Caught");
- throw;
- } catch {
- Console.WriteLine ("Again");
- }
- }
-}