11 lines
230 B
C#
Raw Normal View History

// CS1017: Try statement already has an empty catch block
// Line: 8
class ClassMain {
public static void Main() {
try { }
catch {}
catch (System.Exception) { }
}
}