Copied remotely
[mono.git] / mcs / errors / cs0160.cs
1 // cs0160.cs: A previous catch clause already catches all exceptions of this or a super type 'System.Exception'\r
2 // Line: 8\r
3 \r
4 class ClassMain {\r
5         public static void Main() {\r
6                 try { }\r
7                 catch (System.Exception) { }\r
8                 catch (System.ApplicationException) { }\r
9         }\r
10 }\r
11 \r