blob: d82490ea3c886a1cc06942d155b16d4f1b5040a1 [file] [log] [blame]
// RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
void foo(int a) {
int &tmp0 = a;
int &&tmp1 = 1;
tmp1 = a;
return;
}