llvm/clang/unittests/Sema/SemaNoloadLookupTest.cpp

//== unittests/Sema/SemaNoloadLookupTest.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
//
//===----------------------------------------------------------------------===//

#include "clang/AST/DeclLookups.h"
#include "clang/AST/DeclarationName.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendAction.h"
#include "clang/Frontend/FrontendActions.h"
#include "clang/Parse/ParseAST.h"
#include "clang/Sema/Lookup.h"
#include "clang/Sema/Sema.h"
#include "clang/Sema/SemaConsumer.h"
#include "clang/Tooling/Tooling.h"
#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespaceclang;
usingnamespaceclang::tooling;

namespace {

class NoloadLookupTest : public ::testing::Test {};

struct TrivialVisibleDeclConsumer : public VisibleDeclConsumer {};

class NoloadLookupConsumer : public SemaConsumer {};

class NoloadLookupAction : public ASTFrontendAction {};

TEST_F(NoloadLookupTest, NonModulesTest) {}

} // namespace