[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0552.cs
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;
6
7 //
8 //
9 // Implicit conversion to an interface is not permitted
10 //
11 class NoIDispose {
12         public static implicit operator IDisposable (NoIDispose a)
13         {
14                 return a.x;
15         }
16 }
17