[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0057.cs
blob323e1d994c1a1dd9589a8a55aced27d494f471bf
1 // CS0057: Inconsistent accessibility: parameter type `ErrorCS0057' is less accessible than operator `Foo.implicit operator Foo(ErrorCS0057)'
2 // Line: 11
4 using System;
6 class ErrorCS0057 {
7 public ErrorCS0057 () {}
10 public class Foo {
11 public static implicit operator Foo(ErrorCS0057 bar) {
12 return new Foo ();
15 public static void Main () {