================
@@ -1814,3 +1814,38 @@ namespace GH62206 {
(d) = b; // Should not warn
}
} // namespace GH62206
+
+namespace GH63202 {
+
+struct Person {
+ Person() = default;
----------------
vbvictor wrote:
Can we add
```cpp
Person { string name; }
Special : Person { string surname }
Special(Special&& sp) : Person(std::move(sp)), surname(std::move(sp.name)) //
use after move
```
https://github.com/llvm/llvm-project/pull/199905
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits