summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-29.cs
blob: ec15026ac7fe0931509a58dec2401eb829104c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1525: Unexpected symbol `}'
// Line: 10

namespace TestProject
{
    class MainClass
    {
        public static void Main ()
        {
            for (int i = 0;
        }
    }
}