[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0626-7.cs
1 // CS0626: `A.~A()' is marked as an external but has no DllImport attribute. Consider adding a DllImport attribute to specify the external implementation
2 // Line: 7
3 // Compiler options: -warnaserror
4
5 public sealed class A
6 {
7         extern ~A ();
8 }