a2231ef32e2b288f96e5bca1a76c2f9d09068386
[mono.git] / mcs / errors / cs0504.cs
1 // cs0504.cs: 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