Files
clang-p2996/clang/test/Import/while-stmt/Inputs/F.cpp
Raphael Isemann 2fd6e45e67 [ASTImporter] Add test for WhileStmt
Reviewers: a.sidorin, martong

Reviewed By: martong

Subscribers: rnkovacs, martong, cfe-commits

Differential Revision: https://reviews.llvm.org/D50811

llvm-svn: 339916
2018-08-16 18:20:05 +00:00

9 lines
89 B
C++

void f() {
while (false)
;
while (false) {
}
while (bool ini = true)
;
}