summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-24.cs
blob: 45239fe83ef82334e94fe225f98d13e0bf4588f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0246: The type or namespace name `TypeMe' could not be found. Are you missing an assembly reference?
// Line: 12

class C
{
	static void Foo<T> (int i)
	{
	}

	public static void Main ()
	{
		Foo<TypeMe> (1);
	}
}