Correction for previous #dailybiteofcpp.
Unfortunately, I have misinterpreted a corner case behaviour of std::async, and it managed to survive in the example.
The packaged task will not be run automatically when the future is destroyed. You still need to call .wait() or .get() manually.
Thanks to Pavel Pokutnev on LinkedIn for pointing it out.
Compiler Explorer link: https://compiler-explorer.com/z/4nPjMxxfj
Sorry for the confusion.
@simontoth so not a replacement for RAII or custom deleter anyway. Couldn't really think of a good usecase there. Thanks for the update.
@paiusco yeah, the actual use case is primarily this: https://compiler-explorer.com/z/jMWc7EYe1