7 lines
159 B
C++
7 lines
159 B
C++
void* functionWithLocalConstPointer() {
|
|
void* pointer = nullptr;
|
|
void* const LocalConstPointer = pointer;
|
|
return LocalConstPointer;
|
|
}
|
|
|