[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs1017.cs
blob737a48b6abf6861d48012a1b797629e5ddfa36b9
1 // CS1017: Try statement already has an empty catch block
2 // Line: 8
4 class ClassMain {
5 public static void Main() {
6 try { }
7 catch {}
8 catch (System.Exception) { }