X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0138.cs;h=b0d36314517d3fe52663f3411568c85501d5b6be;hb=a7c9e39f0f58a1dcd41475f5623f301f14e31da7;hp=4d1632b60cb8ed8c051fcf215940b0a4bd41a823;hpb=07ec1253c277856bdbb74213e2defc8ed23cf8e3;p=mono.git diff --git a/mcs/errors/cs0138.cs b/mcs/errors/cs0138.cs index 4d1632b60cb..b0d36314517 100644 --- a/mcs/errors/cs0138.cs +++ b/mcs/errors/cs0138.cs @@ -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"); } }