Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / test-primary-ctor-06.cs
1 // Compiler options: -langversion:experimental
2 using System;
3
4 class ID () : IDisposable
5 {
6         void IDisposable.Dispose ()
7         {
8         }
9 }
10
11 class X
12 {
13         public static void Main ()
14         {
15         }
16 }