Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
2d4f8cbb487f8a1d9da4c6da99821391b69ed7fe
/
.
/
Tests
/
CompileFeatures
/
cxx_uniform_initialization.cpp
blob: e5048d17ed2076bf35831a114cc2bed526d449e3 [
file
]
struct
A
{
};
struct
B
{
B
(
A
)
{}
};
void
Func
()
{
B b
{
A
{}
};
}