2003-02-13 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0057.cs
1 // cs0057.cs: Inconsisten accessibility. Parameter type is less accessible than operator.
2 // Line: 10
3
4 using System;
5
6 class ErrorCS0057 {
7 }
8
9 class Foo {
10         public static implicit operator ErrorCS0057(Foo bar) {
11                 return new ErrorCS0057 ();
12         }
13
14         public static void Main () {
15         }
16 }
17