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

cs0525-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16bb88d7749116bd4ab8ed2939581fbcd8a223bc (plain)
1
2
3
4
5
6
7
// cs0525.cs: Interfaces cannot contain fields
// Line: 9

interface Interface
{
    const bool value = false;
}