Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
02cf404ace01ac4ea7a078dca75a817f95c3bdd3
/
.
/
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
;
};