12 lines
146 B
C#
Raw Normal View History

// CS8049: Implemented interfaces cannot have arguments
// Line: 6
using System;
class ID () : IDisposable ()
{
public void Dispose ()
{
}
}