Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
CompileFeatures
/
cxx_uniform_initialization.cpp
blob: e5048d17ed2076bf35831a114cc2bed526d449e3 [
file
] [
log
] [
blame
]
struct
A
{
};
struct
B
{
B
(
A
)
{}
};
void
Func
()
{
B b
{
A
{}
};
}