blob: 86cb64537236e1611f877a64a32a1b52d06c5904 [file] [log] [blame] [edit]
#include <stdio.h>
#include <stdint.h>
typedef union TestUnion {
uint64_t bits;
} TestUnion;
uint64_t give_back(TestUnion tu) {
return tu.bits;
}