C++程序  |  9行  |  119 B

// RUN: %llvmgcc %s -S -o -
char p (int n) {
  struct f {
    char w; char x[n]; char y[n];
  } F;

  return F.x[0];
}