summaryrefslogtreecommitdiff
path: root/tests/headers/inline_namespace_no_ns_enabled.hpp
blob: 30cd4e9b868a68e811fda2edbaed4599786799d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// bindgen-flags: -- -std=c++11

namespace std {
inline namespace __cxx11 {

template<typename CharT>
class basic_string {
  struct Alloc_hider {
    void* storage;
  } hider;
  unsigned long length;
  struct {
    CharT inline_storage[4];
  };
};

}
}