aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c23-align-10.c
blob: bd6b9c268c3a7c3268246dc30431b5ff396ebcfe (plain)
1
2
3
4
5
6
/* Test C2Y alignof on an incomplete array type: not allowed in C23.  */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */

int a = alignof(int[]); /* { dg-error "incomplete" } */
int b = alignof(int[][1]); /* { dg-error "incomplete" } */