* roottypes.cs: Rename from tree.cs.
[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