1// RUN: %clang -fverbose-asm -S -g %s -o - | grep DW_TAG_enumeration_type 2 3int v; 4enum index { MAX }; 5void foo(void) 6{ 7 v = MAX; 8} 9