summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1017-2.cs
blob: 31c1c1f4a734026348b8193d4ca62d94d5251455 (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 {}
        }
}