fork download
  1.  
  2. struct point_t { int x; int y; };
  3.  
  4. struct foo {
  5. static constexpr point_t p = {1, 2};
  6. };
  7.  
  8.  
  9. int main() {
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty