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: 94f8b6af323f0968a4dd8e4a057c4997fd2a3ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1023.cs: An embedded statement may not be a declaration or labeled statement
// Line: 9

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