449be8d99cf6e455d067d55f9fe3506df02df05d
[openbsd] /
1 #include <queue>
2 #include <vector>
3
4 using namespace std;
5
6 int main() {
7   queue<int> q1{{1,2,3,4,5}};
8   queue<int, std::vector<int>> q2{{1,2,3,4,5}};
9   int ret = q1.size() + q2.size(); // break here
10   return ret;
11 }