summaryrefslogtreecommitdiff
path: root/tests/headers/const_bool.hpp
blob: 633a7c90778ac9398a33bedb35b48e70fb7c6c4e (plain)
1
2
3
4
5
6
7
8
9
// bindgen-unstable

const bool k = true;
struct A {
  static const bool k = false;
};

typedef bool foo;
const foo k2 = true;