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-90.cs')
-rwxr-xr-xmcs/tests/test-90.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/mcs/tests/test-90.cs b/mcs/tests/test-90.cs
deleted file mode 100755
index 8d7c147ec3f..00000000000
--- a/mcs/tests/test-90.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// This test just makes sure that we can compile C.A, there used to be
-// a bug in the compiler that was doing the lookups in the wrong namespace
-//
-//
-namespace N1
-{
- public enum A
- {
- A_1, A_2, A_3
- }
-
- public interface B
- {
- N1.A myProp
- {
- get;
- set; // <-- This always worked.
- }
- }
-
- public interface C
- {
- A myProp
- {
- get;
- set; // <-- This used to fail.
- }
- }
-
- public class Blah {
- static int Main ()
- {
- return 0;
- }
- }
-}