Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0246-26.cs
1 // CS0246: The type or namespace name `M' could not be found. Are you missing an assembly reference?
2 // Line: 11
3
4 interface I<T>
5 {
6         void G<TT> ();
7 }
8
9 class C
10 {
11         void I<M>.G<M> ()
12         {
13         }
14         
15         public static void Main ()
16         {
17         }
18 }