extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int cond) { if (!(cond)) { ERROR: __VERIFIER_error(); } return; } extern void __assert_fail (__const char *__assertion, __const char *__file, unsigned int __line, __const char *__function) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern void __assert_perror_fail (int __errnum, __const char *__file, unsigned int __line, __const char *__function) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern void __assert (const char *__assertion, const char *__file, int __line) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); typedef struct Toplev { int a; struct Inner { int b; struct Innermost{ int c; } *y; } *x; } Stuff; int main() { struct Innermost im = {3}; struct Inner inner = {2, &im}; struct Toplev good = { 1, &inner}; struct Toplev *ptr = &good; ptr->x->y->c = 4; __VERIFIER_assert (ptr->x->y->c == 4); return 0; }