]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/expr-with-cleanups/Inputs/S.cpp
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / test / Import / expr-with-cleanups / Inputs / S.cpp
1 struct RAII {
2   int i = 0;
3   RAII() { i++; }
4   ~RAII() { i--; }
5 };
6 void f() {
7   RAII();
8 }