Home
last modified time | relevance | path

Searched refs:ReferenceClassX (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp1683 DeclarationMatcher ReferenceClassX = in TEST_P() local
1686 matches("class X {}; void y(X y) { X &x = y; }", ReferenceClassX)); in TEST_P()
1688 matches("class X {}; void y(X y) { const X &x = y; }", ReferenceClassX)); in TEST_P()
1691 EXPECT_TRUE(matches("class X {}; void y(X y) { X x = y; }", ReferenceClassX)); in TEST_P()
1692 EXPECT_TRUE(notMatches("class X {}; extern X x;", ReferenceClassX)); in TEST_P()
1694 notMatches("class X {}; void y(X *y) { X *&x = y; }", ReferenceClassX)); in TEST_P()