2014-09-04 09:07:35 +01:00
|
|
|
// CS8049: Implemented interfaces cannot have arguments
|
|
|
|
// Line: 6
|
2015-04-07 09:35:12 +01:00
|
|
|
// Compiler options: -langversion:experimental
|
2014-09-04 09:07:35 +01:00
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
class ID () : IDisposable ()
|
|
|
|
{
|
|
|
|
public void Dispose ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|