aboutsummaryrefslogtreecommitdiff
path: root/raii/surprising-error.cpp
blob: b2e78316abdb55092b46c1b1adfc0683e23d871f (plain)
1
2
3
4
5
6
7
8
9
10
11
class BadType {
public:
	BadType() {
		BadType recursion_hell;
	}
};

int main() {
	BadType x;
	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net