| 1 | #include <string> |
|---|---|
| 2 | #include <tuple> |
| 3 | |
| 4 | int main() { |
| 5 | std::tuple<> empty; |
| 6 | std::tuple<int> one_elt{47}; |
| 7 | std::tuple<std::string> string_elt{"foobar"}; |
| 8 | std::tuple<int, long, std::string> three_elts{1, 47l, "foo"}; |
| 9 | return 0; // break here |
| 10 | } |
| 11 |
