llvm/clang/unittests/Tooling/RecursiveASTVisitorTestPostOrderVisitor.cpp

//===- unittests/Tooling/RecursiveASTVisitorPostOrderASTVisitor.cpp -------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file contains tests for the post-order traversing functionality
// of RecursiveASTVisitor.
//
//===----------------------------------------------------------------------===//

#include "TestVisitor.h"

usingnamespaceclang;

namespace {

class RecordingVisitor : public TestVisitor<RecordingVisitor> {};
} // namespace

TEST(RecursiveASTVisitor, PostOrderTraversal) {}

TEST(RecursiveASTVisitor, NoPostOrderTraversal) {}