mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
8 lines
72 B
C++
8 lines
72 B
C++
#include "files1.h"
|
|
|
|
void g() {
|
|
int x = 2;
|
|
int y = 4;
|
|
swap(&x,&y);
|
|
}
|