void* functionWithLocalConstPointer() { void* pointer = nullptr; void* const localConstPointer = pointer; return localConstPointer; }