Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0201-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 623fd7fea4fd0e0220d7950b1f11289a1a92c381 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0201-3.cs: Only assignment, call, increment, decrement, and new object expressions can be used as a statement
// Line: 7

class T {
        static string XX {
                get {return "";}
        }
        static void Main () {
                T.XX;
        }
}