Merge pull request #944 from ermshiperete/bug-novell-496138
[mono.git] / mcs / errors / cs0138.cs
1 // CS0138: `System.Console' is a type not a namespace. A using namespace directive can only be applied to namespaces
2 // Line: 5
3 // Compiler options: -langversion:5
4
5 using System;
6 using System.Console;
7
8 class A
9 {
10         static void Main ()
11         {
12                 Console.WriteLine ("Test CS0138");
13         }
14 }