ファイルスコープでのすべての宣言はできる限り静的にする
// NameDeclarator [ not isStatic() ] [ isGlobal() ]
1 int x; // MATCHES 2 int y; // MATCHES 3 int z; // MATCHES 4 static int h; 5 const int n = 5; // const static by default when global 6 struct S{} static s; 7 class C{} c; // MATCHES 8 void test() // MATCHES 9 { 10 int a; 11 int b; 12 }