[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0577-2.cs
blob4bb65eed3eb6574393b383caf7e5aa18dc474714
1 // CS0577: Conditional not valid on `MainClass.~MainClass()' because it is a constructor, destructor, operator or explicit interface implementation
2 // Line: 5
4 class MainClass {
5 [System.Diagnostics.Conditional("DEBUG")]
6 ~MainClass () {}
8 public static void Main () {}