1 // RUN: clang-cc -verify -emit-llvm -o %t %s
2 
3 int a = 10;
4 int &ar = a;
5 
6 void f();
7 void (&fr)() = f;
8 
9 struct S { int& a; };
10 S s = { a };
11 
12