mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
14 lines
135 B
C++
14 lines
135 B
C++
struct foo {
|
|
void a(int x) {
|
|
[x, this] {
|
|
a(x + 1);
|
|
};
|
|
}
|
|
|
|
void b(int x) {
|
|
[=] {
|
|
b(x + 1);
|
|
};
|
|
}
|
|
};
|