surprising-error.cpp (108B)
1 class BadType { 2 public: 3 BadType() { 4 BadType recursion_hell; 5 } 6 }; 7 8 int main() { 9 BadType x; 10 return 0; 11 }
taming-cppExperiments with C++ and comparisons with C | |
git clone https://git.tronto.net/taming-cpp | |
Download | Log | Files | Refs | README |
surprising-error.cpp (108B)
1 class BadType { 2 public: 3 BadType() { 4 BadType recursion_hell; 5 } 6 }; 7 8 int main() { 9 BadType x; 10 return 0; 11 }