1 // RUN: %clang_cc1 -no-opaque-pointers -std=c++11 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
2 
foo(int a)3 void foo(int a) {
4   int &tmp0 = a;
5   int &&tmp1 = 1;
6   tmp1 = a;
7   return;
8 }
9