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

cs0531-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8249eb8c2d6a88999d5ce36be604edf9d387f67 (plain)
1
2
3
4
5
6
// cs0531-2.cs: `Interface.P.get': interface members cannot have a definition
// Line:

public interface Interface {        
	int P { get {} }
}