mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
161 B
C++
13 lines
161 B
C++
extern "C" int printf(const char*, ...);
|
|
|
|
struct Magic {
|
|
~Magic() {
|
|
printf("Goodbye cruel world.\n");
|
|
}
|
|
};
|
|
|
|
int main() {
|
|
static Magic m;
|
|
return 0;
|
|
}
|