summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0542-4.cs
blob: b9d831e51fe8f12ba010835e3a7db9a7cf16c18d (plain)
1
2
3
4
5
6
7
8
9
10
// CS0542: `C.C<T>()': member names cannot be the same as their enclosing type
// Line: 6

class C
{
	public static void C<T> ()
	{
	}
}