blob: e747fdcca9df50e6f6aec901de65183c512bbab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS8049: Implemented interfaces cannot have arguments
// Line: 6
// Compiler options: -langversion:experimental
using System;
class ID () : IDisposable ()
{
public void Dispose ()
{
}
}
|