blob: 5d5bedbe1f7e132ea0e7218d1c3fd655113f4112 (
plain)
1
2
3
4
5
6
7
8
|
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */
#include <stdcountof.h>
int a[1];
int b[countof(a)];
int c[_Countof(a)]; /* { dg-error "ISO C does not support" } */
|