// main.cpp int x; // $ Alert // BAD: too short int ys[1000000]; // $ Alert // BAD: too short int descriptive_name; // GOOD: sufficient static int z; // GOOD: not a global int v1; // $ Alert // BAD: too short int v2; // $ Alert // BAD: too short template T v3; // $ Alert // BAD: too short template T v4; // $ Alert // BAD: too short template T v5; // $ Alert // BAD: too short void use_some_fs() { v2 = 100; v4 = 200; v5 = 300; v5 = "string"; }