fork(4) download
  1. #include <iostream>
  2.  
  3. class B {
  4. public:
  5. static constexpr const unsigned int val[][2] = { { 0, 1 } }; //not allowed
  6. };
  7.  
  8. int main()
  9. {
  10. std::cout << "size : " << sizeof(B::val) << std::endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
size : 8