зеркало из https://github.com/microsoft/clang-1.git
Make the negative test of recordType depend on a specific record.
Otherwise it'll break if there's a record type in the AST by default. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176181 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
9c65b06982
Коммит
0cc798f29d
|
@ -3436,8 +3436,10 @@ TEST(TypeMatching, MatchesTemplateSpecializationType) {
|
|||
|
||||
TEST(TypeMatching, MatchesRecordType) {
|
||||
EXPECT_TRUE(matches("class C{}; C c;", recordType()));
|
||||
EXPECT_TRUE(matches("struct S{}; S s;", recordType()));
|
||||
EXPECT_TRUE(notMatches("int i;", recordType()));
|
||||
EXPECT_TRUE(matches("struct S{}; S s;",
|
||||
recordType(hasDeclaration(recordDecl(hasName("S"))))));
|
||||
EXPECT_TRUE(notMatches("int i;",
|
||||
recordType(hasDeclaration(recordDecl(hasName("S"))))));
|
||||
}
|
||||
|
||||
TEST(TypeMatching, MatchesElaboratedType) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче