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-84.cs')
-rwxr-xr-xmcs/tests/test-84.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/tests/test-84.cs b/mcs/tests/test-84.cs
deleted file mode 100755
index e6b3d4e3f0d..00000000000
--- a/mcs/tests/test-84.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// This test shows how a variable can be created with the
-// same name as the class, and then the class referenced again
-//
-// This was a bug exposed by Digger, as we incorrectly tried to
-// do some work ahead of time during the resolution process
-// (ie, we created LocalVariableReferences for the int variable `Ghost',
-// which stopped `Ghost' from being useful as a type afterwards
-//
-
-class Ghost {
-
- static int Main ()
- {
- int Ghost = 0;
-
- if (true){
- Ghost g = null;
- }
- return 0;
- }
-}