11 lines
159 B
C#
Raw Normal View History

// CS0029: Cannot implicitly convert type `int' to `System.IDisposable'
// Line: 8
class A
{
public static void Main ()
{
System.IDisposable id = 1;
}
}