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

cs0547-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8484537b2817eb6a658837a199751b5d5221c1c4 (plain)
1
2
3
4
5
6
7
// cs0547.cs: 'Value' : property cannot have void type
// Line: 5

interface PropertyInterface {
        void Value { get; }
}