fork download
  1. class ConstTest {
  2. public:
  3. explicit ConstTest(char* name) {}
  4. };
  5.  
  6. int main() {
  7. ConstTest t("blarghgh");
  8. }
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty