Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0201-3.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                 get {return "";}
7         }
8         static void Main () {
9                 T.XX;
10         }
11 }