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

cs0160.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e40311ed9b1e68d8cc543214a0afe94756f0c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.ApplicationException) { }
        }
}