2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0118-2.cs
1 // error CS0118: 'A.B' denotes a 'namespace', where a type was expected
2 // Line: 9
3 // Compiler options: -r:CS0118-2-lib.dll
4
5 using A.B.C;
6
7 namespace A.D {
8         class Test {
9                 static public void Main () 
10                 {
11                         B c = new B ();
12                 }
13         }
14 }