hanchenye-llvm-project/clang/test/SemaCXX/using-decl-1.cpp

9 lines
142 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
extern "C" { void f(bool); }
namespace std {
using ::f;
inline void f() { return f(true); }
}