fork download
  1. #include <array>
  2.  
  3. int main()
  4. {
  5. std::array<int, 2> a = {1, 2};
  6. std::array<int, 2> b(a);
  7. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty