summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/class_static_const.hpp
blob: 150afe8bd317a6d466b725b4676ebd21c8f8413f (plain)
1
2
3
4
5
6
7
8
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;
};