struct A { float f; int i; int l; int b; }; void main() { A a; a.f = 5.0; a.i = 7; a.l = 8; a.b = true; test(a.f); test(a.i); test(a.l); test(a.b); }