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/cs1524.cs')
-rwxr-xr-xmcs/errors/cs1524.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/errors/cs1524.cs b/mcs/errors/cs1524.cs
deleted file mode 100755
index b43976cc0bd..00000000000
--- a/mcs/errors/cs1524.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-// cs1524.cs: expected catch or finally
-// Line: 12
-
-namespace Test {
- public class Test {
- public static int Main () {
- int a;
- try {
- a = 1;
- }
-
- return 0;
- }
- }
-}