#include "structured_binding.h" #include #include #include std::tuple func() { return {"32", 32}; } void StructuredBindingTest::run() { const auto &[str, val] = func(); std::cout << "Bound values: " << str << " and " << val << std::endl; }