Files
codeql/cpp/ql/test/library-tests/lambdas/captures/end_pos.cpp
2018-08-02 17:53:23 +01:00

14 lines
209 B
C++

#define OPEN {
void igFun() {
OPEN
}
int ii = 0;
// EDG used to not give the initialization for this ii capture an
// end location:
auto fp = [&ii](void) {
return 1;
};
}