index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tests
/
CompileFeatures
/
cxx_defaulted_move_initializers.cpp
blob: 14f987147abb803a876edb1af06e0483b4b23678 (
plain
)
1
2
3
4
5
6
7
struct
A
{
A
() =
default
;
A
&
operator
=(
A
&&) =
default
;
A
(
A
&&) =
default
;
};