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