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

cs1023.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28891c93e956894f05f7a8de06e2048038a932f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1023.cs: an embedded statement cannot be a declaration or a labeled statement.
// line: 9

class Test
{
        static void Main ()
        {
                for (int i = 0; i < 1000000; i++)
                        int k = i;
        }
}