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

cs0145.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f2f9e3893b5aa16cd4f2ad7a7f1aa44ad565c2b (plain)
1
2
3
4
5
6
7
// cs0145.cs: A const field requires a value to be provided
// Line: 5

class Test {
        const long value;
}