mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
152 B
C++
8 lines
152 B
C++
// main.cpp
|
|
|
|
int x; // BAD: too short
|
|
int ys[1000000]; // BAD: too short
|
|
int descriptive_name; // GOOD: sufficient
|
|
|
|
static int z; // GOOD: not a global
|