Merge pull request #5675 from mono/glib-debug-symbols
[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