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