mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02: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);
|
|
}
|