summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1547-4.cs
blob: 438d1a45aadb97657a38b2917ebaebbeb2703423 (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;
}