1f4a2713aSLionel Sambuc // RUN: %clang_cc1 -std=c++11 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s 2f4a2713aSLionel Sambuc 3f4a2713aSLionel Sambuc extern "C" { 4f4a2713aSLionel Sambuc extern int printf(const char * format, ...); 5f4a2713aSLionel Sambuc } foo(int && i)6f4a2713aSLionel Sambucvoid foo (int &&i) 7f4a2713aSLionel Sambuc { 8f4a2713aSLionel Sambuc printf("%d\n", i); 9f4a2713aSLionel Sambuc } 10f4a2713aSLionel Sambuc 11*0a6a1f1dSLionel Sambuc // CHECK: !"0x42\00\000\000\000\000\000", null, null, !{{.*}}} ; [ DW_TAG_rvalue_reference_type ] 12