summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0763.cs
blob: e9f83a681839f042a06fd4773286e3a7aa3651a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0763: A partial method declaration and partial method implementation must be both `static' or neither
// Line: 11


public partial class C
{
	static partial void Foo ()
	{
	}
	
	partial void Foo ();
}