summaryrefslogtreecommitdiff
path: root/tests/headers/class_static_const.hpp
blob: 92599183313470262594b8931d60c977c935f6d0 (plain)
1
2
3
4
5
6
7
8
9
// bindgen-flags: --with-derive-hash
using int32_t = int;
typedef unsigned int uint32_t;

class A {
    static const int a = 0;
    static const int32_t b = 077;
    static const uint32_t c = 0xff;
};