summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-03-06-VarSizeInStruct2.c
blob: 13bc3aaf9ae7be4f9a48dc395c47d0cf3b7336b0 (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc %s -S -o -
char p (int n) {
  struct f {
    char w; char x[n]; char y[n];
  } F;

  return F.x[0];
}