[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs1017-2.cs
1 // CS1017: Try statement already has an empty catch block
2 // Line: 8
3
4 class ClassMain {
5         public static void Main() {
6                 try { }
7                 catch {}
8                 catch {}
9         }
10 }