This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0138.cs
1 // cs0138.cs: Using keyword only let you specify a namespace,
2 //            Console is a class not a namespace.
3 // Line: 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 }