インライン void 関数を検索する
// FuncDeclarator [ parent::*[ DeclSpecs[*]::BuiltinType [ @Spec = KTC_BUILTINTYPE_VOID ] ] ] [ isInline() ]
1 inline void foo() { // will match
2 }
3 static void foo1() { // will not match
4 }
5 inline char foo2() { // will not match
6 }
7 void foo3() { // will not match
8 }