[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0246-26.cs
blob1bf142762a68f7de3b3c9e2dcdae0f144788e194
1 // CS0246: The type or namespace name `M' could not be found. Are you missing an assembly reference?
2 // Line: 11
4 interface I<T>
6 void G<TT> ();
9 class C
11 void I<M>.G<M> ()
15 public static void Main ()