[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0160-2.cs
blob50c2c44d9086ae1062bfb82056b7518bf45ce8bd
1 // CS0160: 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) { }