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

cs1524.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b43976cc0bdc83e97a93fe584df38dc1add21588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs1524.cs: expected catch or finally
// Line: 12

namespace Test {
        public class Test {
                public static int Main () {
                        int a;
                        try {
                                a = 1;
                        }

                        return 0;
                }
        }
}