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

cs1547-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e03021b15263815eb18a8852e7cf3a5d76dabaea (plain)
1
2
3
4
5
6
// CS1547: Keyword 'void' cannot be used in this context
// Line: 5

class C {
        public const void val = null;
}