#include using namespace Upp; struct Foo : Pte { String text; }; CONSOLE_APP_MAIN { Ptr ptr; { Foo foo; foo.text = "Text"; ptr = &foo; Cout() << (void*)~ptr << " -> " << ptr->text << "\n"; } Cout() << "-------------\n"; Cout() << (void*)~ptr << "\n"; }