DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / run-make / extern-fn-with-union / ctest.c
12345678910
#include <stdio.h> #include <stdint.h> typedef union TestUnion { uint64_t bits; } TestUnion; uint64_t give_back(TestUnion tu) { return tu.bits; }