Sign in
fuchsia
/
third_party
/
swift-clang
/
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2017-02-06-a
/
.
/
test
/
CodeGenCXX
/
PR4983-constructor-conversion.cpp
blob: 797a1baa49e0d7e588a7f01c7158691425a3a2ae [
file
] [
log
] [
blame
]
// 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"
);
}