summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1017.cs
blob: 737a48b6abf6861d48012a1b797629e5ddfa36b9 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1017: Try statement already has an empty catch block
// Line: 8

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