mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
209 B
C++
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;
|
|
};
|
|
}
|
|
|