fork download
  1. #include <iostream>
  2. #include <set>
  3. using namespace std;
  4.  
  5. void doit(const std::set<int>& y)
  6. {
  7. }
  8.  
  9. int main() {
  10. std::set<int> x = {1, 2, 3, 4, 5};
  11.  
  12. doit({1, 2, 3, 4, 5});
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 3268KB
stdin
Standard input is empty
stdout
Standard output is empty