aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/countof-pedantic.c
blob: 408dc6f9366793a066179ef48790f0d6c3c8aaa7 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic" } */

#include <stdcountof.h>

int a[1];
int b[countof(a)];
int c[_Countof(a)];  /* { dg-warning "ISO C does not support" } */