Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0138.cs
index 4d1632b60cb8ed8c051fcf215940b0a4bd41a823..b0d36314517d3fe52663f3411568c85501d5b6be 100644 (file)
@@ -1,4 +1,4 @@
-// cs0138.cs: `System.Console is a type not a namespace. A using namespace directive can only be applied to namespaces
+// CS0138: A `using' directive can only be applied to namespaces but `System.Console' denotes a type. Consider using a `using static' instead
 // Line: 5
 
 using System;
@@ -8,6 +8,6 @@ class A
 {
        static void Main ()
        {
-               Console.WriteLine ("Test cs0138");
+               Console.WriteLine ("Test CS0138");
        }
 }