summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-410.hpp
blob: d4f3de3d1c5ee57712950db0645d22736ca3db39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// bindgen-flags: --enable-cxx-namespaces --allowlist-type JS::Value --rustified-enum ".*"

namespace JS {
class Value;
}
typedef enum {} JSWhyMagic;
namespace JS {
class Value {
public:
  void a(JSWhyMagic);
};
}