aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fixed-point/bitint-1.c
blob: 49e5b5cd2d59209c53210a5e479dc07d378c96bc (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/102989 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-std=c23" } */

void
foo (void)
{
  _Sat _BitInt (42) a;		/* { dg-error "both '_Sat' and '_BitInt' in declaration specifiers" } */
  _BitInt (42) _Sat b;		/* { dg-error "both '_Sat' and '_BitInt' in declaration specifiers" } */
}