summaryrefslogtreecommitdiff
path: root/tests/headers/allowlist-namespaces.hpp
blob: 2cffe9d3dd0d0dd0a47bb5ef310b60335b253def (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --enable-cxx-namespaces --allowlist-type '.*'

namespace outer {
  namespace inner {
    struct Helper {};
  }
  struct Test {
    inner::Helper helper;
  };
}