One line typo bug which passed unoticed on previous commit.
[mono.git] / mcs / errors / cs0431.cs
index 738a176a0119a71cd4c030547eb4892afa598ecf..c75168f57fca3ab25fe1cf1fc4c09f0d95eb0651 100644 (file)
@@ -1,10 +1,10 @@
-// cs0431.cs: `foo' cannot be used with '::' since it denotes a type
+// CS0431: Alias `foo' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
 // Line: 13
 
 using foo = A;
 
 class A {
-       class B { }
+       public class B { }
 }
 
 class X {