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: 09c7c83c404ca202dcb2be1f8123de260f02d0f6 (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) { }
        }
}