alloc 206 B

123456789101112131415161718
  1. struct A {
  2. float f;
  3. int i;
  4. long l;
  5. bool b;
  6. };
  7. void main() {
  8. A a;
  9. a.f = 5.0;
  10. a.i = 7;
  11. a.l = 8L;
  12. a.b = true;
  13. test(a.f);
  14. test(a.i);
  15. test(a.l);
  16. test(a.b);
  17. }