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