7247742ee6bb5e1950acf884d86872978f3816f6
[openbsd] /
1 #include <memory>
2 #include <string>
3
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 }