blob: 8c87c230693d1d0d490d2028ac9b302f2c0d12f3 [file] [log] [blame]
// ignore-license
#include <stdio.h>
#include <stdint.h>
typedef union TestUnion {
uint64_t bits;
} TestUnion;
uint64_t give_back(TestUnion tu) {
return tu.bits;
}