Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs8324.cs
blob8a0be1aefb9818bd9e8fbb0ec4879fc00b3442f4
1 // CS8324: Named argument specifications must appear after all fixed arguments have been specified in a dynamic invocation
2 // Line: 10
3 // Compiler options: -langversion:7.2
5 class C
7 void M ()
9 dynamic d = new object ();
10 d.M (arg: 1, "");