Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
CompileFeatures
/
cxx_defaulted_functions.cpp
blob: 3b15adc8267d23447fff1cb8109e2bc356952e56 [
file
] [
log
] [
blame
]
struct
A
{
A
()
=
default
;
};
void
someFunc
()
{
A a
;
}