Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
d8242c2d46c6cf78ec8d210cbcfd838a67ee77cf
/
.
/
Tests
/
CompileFeatures
/
cxx_delegating_constructors.cpp
blob: 7e04939a062569c8945094b25dedad9c9bbc0865 [
file
]
class
Foo
{
public
:
Foo
(
int
i
);
Foo
(
double
d
)
:
Foo
(
static_cast
<int>
(
d
))
{
}
private
:
int
m_i
;
};