[ERROR]
A destructor call was specified with arguments.
struct A {
~A();
};
void main() {
A a;
a.~A(3); // error
}
Destructor calls have no arguments!