summaryrefslogtreecommitdiff
path: root/clang/test/CXX/special/class.copy/p3.cpp
blob: 3d87266ef3279fdd0749b5898215bfa3091ef365 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s

// PR6141
template<typename T>
struct X {
  X();
  template<typename U> X(X<U>);
  X(const X<T>&);
};

void f(X<int>) { }

struct Y : X<int> { };
struct Z : X<float> { };

// CHECK: define i32 @main()
int main() {
  // CHECK: call void @_ZN1YC1Ev
  // CHECK: call void @_ZN1XIiEC1ERKS0_
  // CHECK: call void @_Z1f1XIiE
  f(Y());
  // CHECK: call void @_ZN1ZC1Ev
  // CHECK: call void @_ZN1XIfEC1ERKS0_
  // CHECK: call void @_ZN1XIiEC1IfEES_IT_E
  // CHECK: call void @_Z1f1XIiE
  f(Z());
}