// ---------------------------------------------------------------------- // // delconst.cc - Do we support deletion via a pointer-to-const? // // History: // 03-Aug-1999 WEB Initial draft // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" int main() { int const * p = new int( 16 ); DELETE_CONST(int *, p); return 0; } // main()