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

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

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