summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-888-enum-var-decl-jump.hpp
blob: fa4ba56ba451ac59bbc5e37f02b885d48d9e1ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: --enable-cxx-namespaces --rustified-enum ".*"

namespace Halide {
struct Type;
}
typedef enum {} a;
namespace Halide {
struct Type {
  static a b;
};
}