fork download
  1. #include <memory>
  2.  
  3. struct LoggerInterface {};
  4.  
  5. int main() {
  6. std::shared_ptr<LoggerInterface> bla;
  7.  
  8.  
  9. if (bla == nullptr)
  10. {
  11. return 1;
  12. }
  13. return 0;
  14. }
Runtime error #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Standard output is empty