blob: 2459f251deb2575f0d9321101c0b6ca98667a3e2 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
extern "C" { void f(bool); }
namespace std {
using ::f;
inline void f() { return f(true); }
}