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

cs0160-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f30c2fe825123f9e86b365b4fb43ba6ac2e49272 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0160.cs: A previous catch clause already catches all exceptions of this or a super type 'System.Exception'
// Line: 8

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