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

cs0548-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62aa9c2d8b5edf98a80413c20b218b90e1314000 (plain)
1
2
3
4
5
6
7
// cs0548.cs: 'PropertyClass.Value' : property or indexer must have at least one accessor
// Line: 5

interface PropertyInterface {
    int Value {}
}