Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0757.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55863217d04ceaecf8afd3db0dcded463a480341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0757: A partial method `C.Foo()' implementation is already defined
// Line: 11


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