summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/stdint_typedef.h
blob: f716a7f1a0c2fa6ff311b21ac0e4874ebbe413db (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --allowlist-type="Struct" --allowlist-function="fun"

// no typedef should be emitted for `__uint64_t`
typedef unsigned long long __uint64_t;
typedef __uint64_t uint64_t;

uint64_t fun();
struct Struct {
	uint64_t field;
};