Home | History | Annotate | Line # | Download | only in lint1
gcc_attribute_enum.c revision 1.1
      1 /*	$NetBSD: gcc_attribute_enum.c,v 1.1 2021/07/06 17:33:07 rillig Exp $	*/
      2 # 3 "gcc_attribute_enum.c"
      3 
      4 /*
      5  * Tests for the GCC __attribute__ for enumerators.
      6  *
      7  * https://gcc.gnu.org/onlinedocs/gcc/Enumerator-Attributes.html
      8  */
      9 
     10 enum Planet {
     11 	Mercury,
     12 	Venus,
     13 	Earth,
     14 	Mars,
     15 	Jupiter,
     16 	Saturn,
     17 	Uranus,
     18 	Neptune,
     19 	/* https://en.wikipedia.org/wiki/Pluto_(planet) */
     20 	/*FIXME*//* expect+1: error: syntax error '__attribute__' [249] */
     21 	Pluto __attribute__((__deprecated__ /* since August 2006 */))
     22 };
     23