2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0160-2.cs
blob5244b8266712824cec46c17410176cd874d8b1f9
1 // cs0160-2.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.Exception) { }