1 // RUN: %llvmgcc %s -w -S -o - 2 void* p (int n) { 3 struct f { 4 char w; char x[n]; char z[]; 5 } F; 6 F.x[0]='x'; 7 return &F; 8 } 9