[ create a new paste ] login | about

Link: http://codepad.org/VF0YT1Lz    [ raw code | output | fork ]

C++, pasted on Oct 8:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include <string>

class Test {
public:
  Test() : m_str(m_str)
  {
    //m_str = m_str;
    //std::cout << "Init String ..." << m_str.c_str() << std::endl;
  }
  ~Test() {}
private:
  std::string m_str;
};

int main()
{
  Test t;
  
  return 0;
}


Output:
1
Segmentation fault


Create a new paste based on this one


Comments: