brintos

brintos / llvm-project-archived public Read only

0
0
Text · 175 B · d82490e Raw
9 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s2 3void foo(int a) {4  int &tmp0 = a;5  int &&tmp1 = 1;6  tmp1 = a;7  return;8}9