fork(1) download
  1. #include <map>
  2. #include <string>
  3.  
  4. class Cokolwiek {
  5. public:
  6. static std::map<std::string, int> foo;
  7.  
  8. };
  9.  
  10. decltype(Cokolwiek::foo) Cokolwiek::foo = {
  11. {"a", 1},
  12. {"b", 2},
  13. {"c", 3},
  14. };
  15.  
  16. int main() {
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
Standard output is empty