(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0552.cs
blob7fe395005deadf0caa5bfd29bb593ef8dfdffa98
1 // cs0552.cs: user-defined conversion to/from interface
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;