Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0057.cs
index 6e103bcc8ed2fdcd340afb678732a2693250ba5a..323e1d994c1a1dd9589a8a55aced27d494f471bf 100644 (file)
@@ -1,10 +1,10 @@
-// cs0057.cs: Inconsistent accessibility. Parameter type is less accessible than operator.
+// CS0057: Inconsistent accessibility: parameter type `ErrorCS0057' is less accessible than operator `Foo.implicit operator Foo(ErrorCS0057)'
 // Line: 11
 
 using System;
 
 class ErrorCS0057 {
-       public ErrorCS0057 ();
+       public ErrorCS0057 () {}
 }
 
 public class Foo {