#include <iostream>
using namespace std;

int main() {
    int const i=4;
    int const* pi = & i;
    delete pi;
}