Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:IsExternC

1493 TEST(IsExternC, MatchesExternCFunctionDeclarations) {
1494 EXPECT_TRUE(matches("extern \"C\" void f() {}", functionDecl(isExternC())));
1496 functionDecl(isExternC())));
1497 EXPECT_TRUE(notMatches("void f() {}", functionDecl(isExternC())));