In ilasm/tests:
[mcs.git] / errors / cs0138.cs
blob4d1632b60cb8ed8c051fcf215940b0a4bd41a823
1 // cs0138.cs: `System.Console is a type not a namespace. A using namespace directive can only be applied to namespaces
2 // Line: 5
4 using System;
5 using System.Console;
7 class A
9 static void Main ()
11 Console.WriteLine ("Test cs0138");