summaryrefslogtreecommitdiffstats
path: root/clang/unittests/ASTMatchers/ASTMatchersTest.cpp
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2014-09-04 08:51:06 +0000
committerManuel Klimek <klimek@google.com>2014-09-04 08:51:06 +0000
commit94ad0bf10d5b9f2875485e8c7c70d8c2dc1d577c (patch)
tree0fe9fe1f7e69ee403d4e600cf931e024b5e5a6ee /clang/unittests/ASTMatchers/ASTMatchersTest.cpp
parent0f54a0b02ad2c649fa6910a75b1a4d72d104a5a9 (diff)
downloadbcm5719-llvm-94ad0bf10d5b9f2875485e8c7c70d8c2dc1d577c.tar.gz
bcm5719-llvm-94ad0bf10d5b9f2875485e8c7c70d8c2dc1d577c.zip
Add matcher for linkage specification
Patch by Jacques Pienaar. llvm-svn: 217135
Diffstat (limited to 'clang/unittests/ASTMatchers/ASTMatchersTest.cpp')
-rw-r--r--clang/unittests/ASTMatchers/ASTMatchersTest.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/unittests/ASTMatchers/ASTMatchersTest.cpp b/clang/unittests/ASTMatchers/ASTMatchersTest.cpp
index 3fbe896a87b..e074c6ecc05 100644
--- a/clang/unittests/ASTMatchers/ASTMatchersTest.cpp
+++ b/clang/unittests/ASTMatchers/ASTMatchersTest.cpp
@@ -377,6 +377,11 @@ TEST(DeclarationMatcher, hasDeclContext) {
hasName("M"), hasDeclContext(namespaceDecl()))))));
}
+TEST(DeclarationMatcher, LinkageSpecification) {
+ EXPECT_TRUE(matches("extern \"C\" { void foo() {}; }", linkageSpecDecl()));
+ EXPECT_TRUE(notMatches("void foo() {};", linkageSpecDecl()));
+}
+
TEST(ClassTemplate, DoesNotMatchClass) {
DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
EXPECT_TRUE(notMatches("class X;", ClassX));
OpenPOWER on IntegriCloud