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-55.cs')
-rwxr-xr-xmcs/tests/test-55.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/mcs/tests/test-55.cs b/mcs/tests/test-55.cs
deleted file mode 100755
index 6058ee2a1ba..00000000000
--- a/mcs/tests/test-55.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using c = System.Console;
-using s = System;
-
-namespace A {
- namespace B {
- class C {
- public static void Hola () {
- c.WriteLine ("Hola!");
- }
- }
- }
-}
-
-namespace X {
- namespace Y {
- namespace Z {
- class W {
- public static void Ahoj () {
- s.Console.WriteLine ("Ahoj!");
- }
- }
- }
- }
-}
-
-class App {
- public static int Main () {
- A.B.C.Hola ();
- X.Y.Z.W.Ahoj ();
-
- return 0;
- }
-}