**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0056.cs
blobbdeb039581feac54f5fc92732c56ed6c17063e42
1 // cs0056.cs: Incompatible accessibility. Operator return type is less accessible than operator.
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 () {