mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
158 B
C++
8 lines
158 B
C++
void disabled(void) {
|
|
int a = 1;
|
|
int *p = &a;
|
|
p = &(int)a;
|
|
}
|
|
|
|
// semmle-extractor-options: --microsoft --edg --preserve_lvalues_with_same_type_casts
|