1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple i386-unknown-unknown %s -g -emit-llvm -o /dev/null
2*f4a2713aSLionel Sambuc int v;
3*f4a2713aSLionel Sambuc enum e { MAX };
4*f4a2713aSLionel Sambuc 
foo(void)5*f4a2713aSLionel Sambuc void foo (void)
6*f4a2713aSLionel Sambuc {
7*f4a2713aSLionel Sambuc   v = MAX;
8*f4a2713aSLionel Sambuc }
9