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