1 /* Test support of scalar_storage_order attribute */
3 /* { dg-do compile } */
7 struct __attribute__((scalar_storage_order("big-endian"))) S1
15 struct __attribute__((scalar_storage_order("little-endian"))) S2
21 void incompatible_assign (struct S3
*s3
, struct S4
*s4
)
23 s3
->s1
= s4
->s2
; /* { dg-error "(incompatible types|no match)" } */