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-487.cs')
-rw-r--r--mcs/tests/test-487.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/tests/test-487.cs b/mcs/tests/test-487.cs
deleted file mode 100644
index d692ea9b942..00000000000
--- a/mcs/tests/test-487.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-struct X {
- int i;
- static bool pass = false;
-
- X (object dummy)
- {
- X x = new X ();
- x.i = 1;
- int n = 0;
-
- if ((this = x).i == 1)
- n ++;
-
- if (this.i == 1)
- n ++;
-
- pass = (n == 2);
- }
- static int Main ()
- {
- new X (null);
- return pass ? 0 : 1;
- }
-} \ No newline at end of file