* added BorderStyle.cs, it got left out in the last commit
[mono.git] / mcs / tests / test-55.cs
1 using c = System.Console;
2 using s = System;
3
4 namespace A {
5         namespace B {
6                 class C {
7                         public static void Hola () {
8                                 c.WriteLine ("Hola!");
9                         }
10                 }
11         }
12 }
13
14 namespace X {
15         namespace Y {
16                 namespace Z {
17                         class W {
18                                 public static void Ahoj () {
19                                         s.Console.WriteLine ("Ahoj!");
20                                 }
21                         }
22                 }
23         }
24 }
25
26 class App {
27         public static int Main () {
28                 A.B.C.Hola ();
29                 X.Y.Z.W.Ahoj ();
30
31                 return 0;
32         }
33 }