* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0552.cs
1 // cs0552.cs: 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