artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
1c0d0f2ae7744bb873c5bcc7f47efa89001cccbf
[openbsd]
/
1
#include <tuple>
2
#include <string>
3
4
using namespace std;
5
6
int main() {
7
tuple<> empty;
8
tuple<int> one_elt{47};
9
tuple<int, long, string> three_elts{1, 47l, "foo"};
10
return 0; // break here
11
}