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