view gcc/testsuite/c-c++-common/attributes-enum-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test enumerators with attributes.  */
/* PR c/47043 */
/* { dg-do compile } */

enum E {
  A __attribute__((deprecated)),
  B __attribute__((deprecated ("foo"))),
  C __attribute__((deprecated)) = 10,
  D __attribute__((deprecated ("foo"))) = 15,
  E
};

int
f (int i)
{
  i += A; /* { dg-warning ".A. is deprecated" } */
  i += B; /* { dg-warning ".B. is deprecated" } */
  i += C; /* { dg-warning ".C. is deprecated" } */
  i += D; /* { dg-warning ".D. is deprecated" } */
  i += E;
  return i;
}