summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0504.cs
blob: d21d6577a1f395c316907cef9c5d11bd2c28a0da (plain)
1
2
3
4
5
6
7
8
9
// CS0504: The constant `Sample.constant' cannot be marked static
// Line: 5

class Sample {
        static const bool constant = false;
}