Skip to content
Snippets Groups Projects
Commit e147f773 authored by Haojian Wu's avatar Haojian Wu
Browse files

[ASTMatcher] Fix a ASTMatcher test failure on Windows.

Reviewers: alexfh, aaron.ballman

Subscribers: thakis, cfe-commits, klimek

Differential Revision: http://reviews.llvm.org/D20369

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@269936 91177308-0d34-0410-b5e6-96231b3b80d8
parent 334ff89a
No related branches found
No related tags found
No related merge requests found
......@@ -178,13 +178,14 @@ TEST(EnumConstant, Matches) {
}
TEST(Matcher, UnresolvedLookupExpr) {
EXPECT_TRUE(matches("template<typename T>"
"T foo() { T a; return a; }"
"template<typename T>"
"void bar() {"
" foo<T>();"
"}",
unresolvedLookupExpr()));
EXPECT_TRUE(matchesConditionally("template<typename T>"
"T foo() { T a; return a; }"
"template<typename T>"
"void bar() {"
" foo<T>();"
"}",
unresolvedLookupExpr(), true,
"-fno-delayed-template-parsing"));
}
TEST(Matcher, Call) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment