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

cs0754.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf4873364f4e957fc769682bfbc0b85f6af76c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0754: A partial method `C.I.Foo()' cannot explicitly implement an interface
// Line: 12


public interface I
{
	void Foo ();
}

public partial class C : I
{
	partial void I.Foo ();
}