summaryrefslogtreecommitdiff
path: root/tests/headers/nested_within_namespace.hpp
blob: a9b7c1ec6a63642cda44a2f3c1c414fbf622c74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// bindgen-flags: --enable-cxx-namespaces

namespace foo {
  class Bar {
    int foo;

    class Baz {
      int foo;
    };
  };

  class Baz {
    int baz;
  };
}