forked from OSchip/llvm-project
9 lines
142 B
C++
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); }
|
||
|
}
|