summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0626-7.cs
blob: c8a561e960b5cfb9a8eea0597828b2e22e34f924 (plain)
1
2
3
4
5
6
7
8
// CS0626: `A.~A()' is marked as an external but has no DllImport attribute. Consider adding a DllImport attribute to specify the external implementation
// Line: 7
// Compiler options: -warnaserror

public sealed class A
{
	extern ~A ();
}