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