merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / errors / cs0103.cs
1 // cs0103.cs: The name `count' does not exist in the context of `ClassMain'
2 // Line: 6
3
4 class ClassMain {
5         public static void Main () {
6                 count++;
7         }
8 }
9