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
/
while-stmt
/
Inputs
/
F.cpp
Text
·
89 B
·
6fd2d87
Raw
9 lines · cpp
1
void f() {
2
while (false)
3
;
4
while (false) {
5
}
6
while (bool ini = true)
7
;
8
}
9