summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/PR4983-constructor-conversion.cpp
blob: 797a1baa49e0d7e588a7f01c7158691425a3a2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -emit-llvm-only %s

struct A {
  A(const char *s){}
};

struct B {
  A a;
  
  B() : a("test") { }
};

void f() {
    A a("test");
}