Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
cca09318d4e7d39bd56c5666c59cd703bce1d732
/
.
/
Tests
/
CompileFeatures
/
cxx_defaulted_move_initializers.cpp
blob: 14f987147abb803a876edb1af06e0483b4b23678 [
file
]
struct
A
{
A
()
=
default
;
A
&
operator
=(
A
&&)
=
default
;
A
(
A
&&)
=
default
;
};