[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0552.cs
blob073fed220867360c7ef587c67b7d62ac1010caea
1 // CS0552: User-defined conversion `NoIDispose.implicit operator System.IDisposable(NoIDispose)' cannot convert to or from an interface type
2 // Line: 12
3 //
4 using System;
5 using System.IO;
7 //
8 //
9 // Implicit conversion to an interface is not permitted
11 class NoIDispose {
12 public static implicit operator IDisposable (NoIDispose a)
14 return a.x;