2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0160.cs
blob6e40311ed9b1e68d8cc543214a0afe94756f0c7c
1 // cs0160.cs: A previous catch clause already catches all exceptions of this or a super type `System.Exception'
2 // Line: 8
4 class ClassMain {
5 public static void Main() {
6 try { }
7 catch (System.Exception) { }
8 catch (System.ApplicationException) { }