Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0118-2.cs
1 // CS0118: `A.B' is a `namespace' but 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 }