Merge pull request #1412 from esdrubal/stackframe
[mono.git] / mcs / errors / cs8049.cs
1 // CS8049: Implemented interfaces cannot have arguments
2 // Line: 6
3 // Compiler options: -langversion:experimental
4
5 using System;
6
7 class ID () : IDisposable ()
8 {
9         public void Dispose ()
10         {
11         }
12 }