blob: 0780bb5355bcedd51902e3bf5cea2ec570974526 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Test ATOMIC_VAR_INIT not in C23. */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */
#include <stdatomic.h>
#ifdef ATOMIC_VAR_INIT
#error "ATOMIC_VAR_INIT defined"
#endif
|