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/test-24.cs')
-rw-r--r--mcs/tests/test-24.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/tests/test-24.cs b/mcs/tests/test-24.cs
deleted file mode 100644
index e69a844c93d..00000000000
--- a/mcs/tests/test-24.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// Properties intermixed in assignments
-//
-
-using System;
-
-class X {
-
- static string v;
-
- static string S {
- get {
- return v;
- }
- set {
- v = value;
- }
- }
-
- static string x, b;
-
- static int Main ()
- {
-
- x = S = b = "hlo";
- if (x != "hlo")
- return 1;
- if (S != "hlo")
- return 2;
- if (b != "hlo")
- return 3;
- return 0;
- }
-}
-