fork download
  1. #include <iostream>
  2. #include <memory>
  3. using namespace std;
  4.  
  5. class Variable
  6. {
  7. public:
  8. const int x;
  9. Variable(const int x) : x(x) {};
  10. };
  11.  
  12. void create_variable(std::shared_ptr<Variable> &v)
  13. {
  14. v = std::make_shared<Variable>(5);
  15. }
  16.  
  17. int main() {
  18. std::shared_ptr<Variable> v;
  19. create_variable(v);
  20. std::cout << v->x << "\n";
  21. return 0;
  22. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
5