[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0160.cs
blob582e9d71fc4122fdea507d5c87e80b63d496efaf
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.ApplicationException) { }