```cpp #include <string> void func(const std::string&); void f(bool b) { std::string s; func(b ? "" : std::move(s)); } ``` https://godbolt.org/z/q8Phdzfea