6_5_cast_scalar_from_struct.c (79B)
1 int test_main(void) { 2 struct S { 3 int v; 4 } s = {42}; 5 return (int)s; 6 }