Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
CompileFeatures
/
cxx_delegating_constructors.cpp
blob: 7e04939a062569c8945094b25dedad9c9bbc0865 [
file
] [
log
] [
blame
]
class
Foo
{
public
:
Foo
(
int
i
);
Foo
(
double
d
)
:
Foo
(
static_cast
<int>
(
d
))
{
}
private
:
int
m_i
;
};