1 2 3 4 5 6 7 8 9 10 11
static inline void foo (long long const v0, long long const v1) { bar (v0 == v1); } void test (void) { foo (0, 1); }