# 3 "gcc_attribute_enum.c"
enum __attribute__(()) __attribute__((__deprecated__)) tag;
enum __attribute__(()) __attribute__((__deprecated__)) tag_with_declaration {
TAG_WITH_DECL
} __attribute__(()) __attribute__((__deprecated__));
enum __attribute__(()) __attribute__((__deprecated__)) {
ONLY_DECL
} __attribute__(()) __attribute__((__deprecated__));
enum without_initializer {
NO_INIT_FIRST __attribute__(()) __attribute__((__deprecated__)),
NO_INIT_LAST __attribute__(()) __attribute__((__deprecated__))
};
enum with_initializer {
INIT_FIRST __attribute__(()) __attribute__((__deprecated__)) = 1,
INIT_LAST __attribute__(()) __attribute__((__deprecated__)) = 2,
INIT_WRONG = 3 __attribute__(()) __attribute__((__deprecated__)),
};
enum tag {
TAG
};