1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// CS0246: The type or namespace name `M' could not be found. Are you missing an assembly reference? // Line: 11 interface I<T> { void G<TT> (); } class C { void I<M>.G<M> () { } public static void Main () { } }