13 lines
193 B
C#
Raw Normal View History

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