mirror of
https://github.com/github/codeql.git
synced 2026-01-31 07:12:57 +01:00
8 lines
123 B
C++
8 lines
123 B
C++
// semmle-extractor-options: --clang
|
|
|
|
int globalInt;
|
|
|
|
int *globalIntAddress() {
|
|
return __builtin_addressof(globalInt);
|
|
}
|