18 lines · c
1//===-- lib/Semantics/check-declarations.h ----------------------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// Static declaration checks10 11#ifndef FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_12#define FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_13namespace Fortran::semantics {14class SemanticsContext;15void CheckDeclarations(SemanticsContext &);16} // namespace Fortran::semantics17#endif18