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-64.cs')
-rwxr-xr-xmcs/tests/test-64.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/tests/test-64.cs b/mcs/tests/test-64.cs
deleted file mode 100755
index 43c31d7559e..00000000000
--- a/mcs/tests/test-64.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// This just test that we can compile this code.
-//
-// The challenge here is that LookupType needs to first look
-// in classes defined in its class or parent classes before resorting
-// to lookups in the namespace.
-//
-
-class Operator {
-}
-
-class Blah {
-
- public enum Operator { A, B };
-
- public Blah (Operator x)
- {
- }
-}
-
-class T {
- static int Main ()
- {
- Blah b = new Blah (Blah.Operator.A);
-
- return 0;
- }
-}
-