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