名前空間内以外で構文的に宣言された関数を検索する

// FuncDeclarator [ not ancestor::NamespaceDecl ]

1   // finds this
2   void f(); 
3   namespace xn { 
4             
5       // no match - within a namespace
6       void f(); 
7   }