Files
panopainter/test.cpp

8 lines
101 B
C++

#include <memory>
struct A{};
int main(){
std::shared_ptr<A> p;
A* a = nullptr;
p = a;
}