2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0056.cs
blobf7cfec5383ba2dddbe10c5d19937f142881ba3ff
1 // cs0056.cs: Inconsistent accessibility: return type `ErrorCS0056' is less accessible than operator `Foo.implicit operator ErrorCS0056(Foo)'
2 // Line: 11
4 using System;
6 class ErrorCS0056 {
7 public ErrorCS0056 () {}
10 public class Foo {
11 public static implicit operator ErrorCS0056(Foo foo) {
12 return new ErrorCS0056 ();
14 public static void Main () {