1// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3struct X { int *XX; int Y;};
4
5void foo() {
6  // CHECK: @foo.nate = internal global i32 0
7  static int nate = 0;
8  struct X bob = { &nate, 14 };
9  bar(&bob);
10}
11