summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0736-2.cs
blob: 7465329a51547e0540ba9e9c4845da68866f611a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0736: `B' does not implement interface member `I.Test(int)' and the best implementing candidate `B.Test(int)' is static
// Line: 11

interface I
{
	void Test (int a);
}

class B: I
{
	public static void Test (int a) {}
}