aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/flex-array-counted-by-7.c
blob: fcb6f1b796903e6ea7b827ab997d80cd6a9cde44 (plain)
1
2
3
4
5
6
7
8
/* Testing the correct usage of attribute counted_by: _BitInt  */   
/* { dg-do compile { target bitint } } */
/* { dg-options "-O2 -std=c23" } */

struct trailing_array {
  _BitInt(24) count; 
  int array[] __attribute ((counted_by (count)));
};