freebsd-dev/test/SemaCXX/using-decl-1.cpp

9 lines
142 B
C++
Raw Normal View History

2009-06-27 10:45:02 +00:00
// RUN: clang-cc -fsyntax-only -verify %s
extern "C" { void f(bool); }
namespace std {
using ::f;
inline void f() { return f(true); }
}