6 lines
82 B
C++
6 lines
82 B
C++
typedef int *MyPtr;
|
|
MyPtr getPtr();
|
|
|
|
void foo() {
|
|
auto TdNakedPtr = getPtr();
|
|
}
|