summaryrefslogtreecommitdiffstats
path: root/clang/test/Import/expr-with-cleanups/Inputs/S.cpp
blob: 7b69f48f681e34a69649a69dd385d66bed4187e5 (plain)
1
2
3
4
5
6
7
8
struct RAII {
  int i = 0;
  RAII() { i++; }
  ~RAII() { i--; }
};
void f() {
  RAII();
}
OpenPOWER on IntegriCloud