1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* { dg-do run } */ /* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */ #include <objc/encoding.h> #include <stdlib.h> struct f { _Bool a; }; int main(void) { if (objc_sizeof_type (@encode (struct f)) != sizeof(struct f)) abort (); return 0; }