mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
92 B
C++
10 lines
92 B
C++
class C {
|
|
public:
|
|
C(int x, int y);
|
|
};
|
|
|
|
void f() {
|
|
int i, j, k, l;
|
|
C c(i + j, k - l);
|
|
}
|