Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
clang
/
test
/
Import
/
expr-with-cleanups
/
Inputs
/
S.cpp
Text
·
90 B
·
7b69f48
Raw
9 lines · cpp
1
struct RAII {
2
int i = 0;
3
RAII() { i++; }
4
~RAII() { i--; }
5
};
6
void f() {
7
RAII();
8
}
9