Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
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
;
};