blob: 7742c7823984231c6acc5c818c49d9fbef9d58a2 (
plain)
1
2
3
4
5
6
7
8
9
|
// bindgen-flags: --with-derive-hash --with-derive-partialeq
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;
};
|