summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-26.cs
blob: 1bf142762a68f7de3b3c9e2dcdae0f144788e194 (plain)
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 ()
	{
	}
}