blob: 62c1f51fb9edbce6408c517902a8ab12ef9d558e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
// Line: 7
class T {
static string XX {
get {return "";}
}
static void Main () {
T.XX;
}
}
|