mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 23:59:07 +00:00
11 lines
156 B
C
11 lines
156 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
typedef union TestUnion {
|
|
uint64_t bits;
|
|
} TestUnion;
|
|
|
|
uint64_t give_back(TestUnion tu) {
|
|
return tu.bits;
|
|
}
|