Raphael Isemann 63072abbb9 [ASTImporter] Add test for CXXForRangeStmt
Reviewers: a.sidorin, martong

Reviewed By: martong

Subscribers: rnkovacs, martong, cfe-commits

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

llvm-svn: 340297
2018-08-21 16:36:49 +00:00

12 lines
123 B
C++

struct Container {
int *begin();
int *end();
};
void f() {
Container c;
for (int varname : c) {
return;
}
}