1 // RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s 2 template<typename T> struct Identity { 3 typedef T Type; 4 }; 5 6 void f(Identity<int>::Type a) {} 7 void f(Identity<int> a) {} 8 void f(int& a) { } 9 10 template<typename T> struct A { 11 A<T> *next; 12 }; 13 void f(A<int>) { } 14 15 struct B { }; 16 17 void f() { 18 int B::*a = 0; 19 void (B::*b)() = 0; 20 } 21 22 namespace EmptyNameCrash { 23 struct A { A(); }; 24 typedef struct { A x; } B; 25 B x; 26 } 27 28 // PR4890 29 namespace PR4890 { 30 struct X { 31 ~X(); 32 }; 33 34 X::~X() { } 35 } 36 37 namespace VirtualDtor { 38 struct Y { 39 virtual ~Y(); 40 }; 41 42 Y::~Y() { } 43 } 44 45 namespace VirtualBase { 46 struct A { }; 47 struct B : virtual A { }; 48 49 void f() { 50 B b; 51 } 52 } 53 54 void foo() { 55 const wchar_t c = L'x'; 56 wchar_t d = c; 57 } 58 59 namespace b5249287 { 60 template <typename T> class A { 61 struct B; 62 }; 63 64 class Cls { 65 template <typename T> friend class A<T>::B; 66 }; 67 68 Cls obj; 69 } 70 71 namespace pr9608 { // also pr9600 72 struct incomplete; 73 incomplete (*x)[3]; 74 // CHECK: metadata [[INCARRAYPTR:![0-9]*]], i32 0, i32 1, [3 x i8]** @_ZN6pr96081xE, null} ; [ DW_TAG_variable ] [x] 75 // CHECK: [[INCARRAYPTR]] = {{.*}}metadata [[INCARRAY:![0-9]*]]} ; [ DW_TAG_pointer_type ] 76 // CHECK: [[INCARRAY]] = {{.*}}metadata [[INCTYPE:![0-9]*]], metadata {{![0-9]*}}, i32 0, i32 0} ; [ DW_TAG_array_type ] [line 0, size 0, align 0, offset 0] [from incomplete] 77 // CHECK: [[INCTYPE]] = {{.*}} ; [ DW_TAG_structure_type ] [incomplete]{{.*}} [fwd] 78 } 79