Align libgc vcxproj with makefile.
[mono.git] / mcs / errors / cs0201-2.cs
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 7
3
4 class T {
5         static string XX;
6         static void Main () {
7                 T.XX;
8         }
9 }