summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/dfp/keywords-reserved.c
blob: 4a042adf4c26261932e1a7c34b215fcf4ebba527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */

/* N1150 3: Decimal floating types.
   C99 6.4.1(2): Keywords.
   Decimal float keywords cannot be used in other contexts.  */

int _Decimal32 (void)		/* { dg-error "" } */
{
  return 0;
}

int foo (int i)
{
  int _Decimal64 = i * 2;	/* { dg-error "" } */
  return _Decimal64;		/* { dg-error "" } */
}