2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs0138.cs
1 // cs0138.cs: A using namespace directive can only be applied to namespaces; `System.Console' is a type not a namespace
2 // Line: 5
3
4 using System;
5 using System.Console;
6
7 class A
8 {
9         static void Main ()
10         {
11                 Console.WriteLine ("Test cs0138");
12         }
13 }