Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / errors / cs0504.cs
1 // CS0504: The constant `Sample.constant' cannot be marked static
2 // Line: 5
3
4 class Sample {
5         static const bool constant = false;
6 }
7
8
9