2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0246-6.cs
blob5411c541d01b6b0c3449d8390f6e77a4052e8a1a
1 // CS0246: The type or namespace name `M' could not be found. Are you missing a using directive or 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 ()