fork download
  1. #include <iostream>
  2. #include <array>
  3. using namespace std;
  4.  
  5.  
  6. template<std::size_t N>
  7. bool invoke(std::array<int,N> s)
  8. {
  9.  
  10. }
  11.  
  12. int main() {
  13. std::array<int, 4> d;
  14. invoke(d);
  15. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty