Hi,

I was reading the E Appendix of "The C++ Programming Language , Special Edition" when I came across on page 948 with the following syntax:
"new(b.space) T(x);" where b.space is a pointer and x an object of type T. Does this syntax works in modern C++ compilers?

Thank you