aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/using-decl-1.cpp
blob: 2459f251deb2575f0d9321101c0b6ca98667a3e2 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: clang-cc -fsyntax-only -verify %s

extern "C" { void f(bool); }

namespace std {
  using ::f;
  inline void f() { return f(true); }
}