2003-02-05 Alan Tam <Tam@suiLung.com>
[mono.git] / mcs / errors / cs0056.cs
1 // cs0056.cs: Incompatible accessibility. Operator return type is less accessible than operator.
2 // Line: 10
3
4 using System;
5
6 class ErrorCS0056 {
7 }
8
9 class Foo {
10         public static implicit operator ErrorCS0056(Foo foo) {
11                 return new ErrorCS0056 ();
12         }
13         public static void Main () {
14         }
15 }