diff --git a/clang/unittests/Tooling/Syntax/SynthesisTest.cpp b/clang/unittests/Tooling/Syntax/SynthesisTest.cpp --- a/clang/unittests/Tooling/Syntax/SynthesisTest.cpp +++ b/clang/unittests/Tooling/Syntax/SynthesisTest.cpp @@ -51,6 +51,19 @@ )txt")); } +TEST_P(SynthesisTest, Leaf_Punctuation_CXX) { + if (!GetParam().isCXX()) + return; + + buildTree("", GetParam()); + + auto *Leaf = createLeaf(*Arena, tok::coloncolon); + + EXPECT_TRUE(treeDumpEqual(Leaf, R"txt( +'::' Detached synthesized + )txt")); +} + TEST_P(SynthesisTest, Leaf_Keyword) { buildTree("", GetParam()); @@ -61,6 +74,19 @@ )txt")); } +TEST_P(SynthesisTest, Leaf_Keyword_CXX11) { + if (!GetParam().isCXX11OrLater()) + return; + + buildTree("", GetParam()); + + auto *Leaf = createLeaf(*Arena, tok::kw_nullptr); + + EXPECT_TRUE(treeDumpEqual(Leaf, R"txt( +'nullptr' Detached synthesized + )txt")); +} + TEST_P(SynthesisTest, Leaf_Identifier) { buildTree("", GetParam());