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: a2231ef32e2b288f96e5bca1a76c2f9d09068386 (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;
}