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

cs1017.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db2f76e67affc34b39379141e2d2ef1d3767ff4e (plain)
1
2
3
4
5
6
7
8
9
10
// cs1017.cs: Try statement already has an empty catch block
// Line: 8

class ClassMain {
        public static void Main() {
                try { }
                catch {}
                catch (System.Exception) { }
        }
}