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

#include <stdcountof.h>

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