OSDN Git Service

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