[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0056.cs
blob3fa4297af9ec5d28bbfc7365c5305872144ffacb
1 // CS0056: 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 () {