gecko-dev/third_party/rust/bindgen/tests/headers/class_static_const.hpp

9 строки
164 B
C++

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;
};