mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +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
|