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/tests/try.cs')
-rwxr-xr-xmcs/tests/try.cs53
1 files changed, 0 insertions, 53 deletions
diff --git a/mcs/tests/try.cs b/mcs/tests/try.cs
deleted file mode 100755
index 5bc1d408d0c..00000000000
--- a/mcs/tests/try.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-class t {
-
- void a ()
- {
- int b;
-
- try {
- b = 1;
- } catch {
- b = 2;
- }
- }
-
- void b ()
- {
- int a;
-
- try {
- a = 1;
- } catch (Exception) {
- a = 2;
- }
- }
-
- void c ()
- {
- int a;
-
- try {
- a = 2;
- } catch (Exception e) {
- a = 0x3;
- } catch {
- a = 0x1;
- }
- }
-
- void d ()
- {
- int a;
-
- try {
- a = 2;
- } catch (Exception e) {
- a = 0x3;
- } catch {
- a = 0x1;
- } finally {
- a = 111;
- }
- }
-}
-