summaryrefslogtreecommitdiff
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;
};