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