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: b547a5562f86214a365d8309a6204f8c33c6dd5a (plain)
1
2
3
4
5
6
7
// cs0547-2.cs: `Value': property or indexer cannot have void type
// Line: 5

interface PropertyInterface {
        void Value { get; }
}