PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / objc.dg / encode-7.m
blob0cea9356b71e7a992d386e32753c009c0ad88fcb
1 /* { dg-do run } */
2 /* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
4 #include <objc/runtime.h>
5 #include <stdlib.h>
7 struct f
9   _Bool a;
13 int main(void)
15   if (objc_sizeof_type (@encode (struct f)) != sizeof(struct f))
16    abort ();
17   return 0;