summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0755.cs
blob: 66c48f348ec549709f3c24f6365a8e0bdb8ce82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0755: A partial method declaration and partial method implementation must be both an extension method or neither
// Line: 11


public static partial class C
{
	static partial void Foo (this string eType)
	{
	}
	
	static partial void Foo (string value);
}