mirror of
https://github.com/boostorg/ptr_container.git
synced 2026-02-23 16:02:10 +00:00
7 lines
95 B
C++
Executable File
7 lines
95 B
C++
Executable File
int main()
|
|
{
|
|
void * p = 0;
|
|
void*& rp = p;
|
|
int*& p2 = *static_cast<int**>( &rp );
|
|
}
|