1 #include <memory> 2 #include <string> 3 main()4 int main() { 5 std::tuple<int> ti{1}; 6 std::tuple<std::string> ts{"foobar"}; 7 std::tuple<int, std::string, int> tt{1, "baz", 2}; 8 return 0; // Set break point at this line. 9 } 10