[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0103.cs
1 // CS0103: The name `count' does not exist in the current context
2 // Line: 6
3
4 class ClassMain {
5         public static void Main () {
6                 count++;
7         }
8 }
9