fork download
  1. union T
  2. {
  3. const int y;
  4. const char c;
  5. const float z;
  6. T(int j) : y(j) {}
  7. T() = default;
  8. };
  9.  
  10. int main()
  11. {
  12. T t;
  13. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty