summaryrefslogtreecommitdiff
path: root/tests/headers/inline_namespace_allowlist.hpp
blob: 90e46dfb84e09d2d756e00ff5a2a52106b87ad56 (plain)
1
2
3
4
5
6
7
// bindgen-flags: --enable-cxx-namespaces --allowlist-type=std::string -- -std=c++11

namespace std {
  inline namespace bar {
    using string = const char*;
  };
};