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

cs0504.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2d1126de67e8b84d0c9f8155906abe83921a38e (plain)
1
2
3
4
5
6
7
8
9
// cs0504.cs: The constant 'Sample.constant' cannot be marked static
// Line: 5

class Sample {
        static const bool constant = false;
}