fork download
  1. #include <iostream>
  2.  
  3. class TDigitalIntMatrix
  4. {
  5. public:
  6. TDigitalIntMatrix(int rows = 2, int columns = 2) {}
  7. };
  8.  
  9. void test(const TDigitalIntMatrix &a) {
  10. std::cout << "shit happens" << std::endl;
  11. }
  12.  
  13. int main() {
  14. test(1);
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
shit happens