]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/extern-fn-with-union/ctest.c
:arrow_up: rust-analyzer
[rust.git] / src / test / run-make-fulldeps / extern-fn-with-union / ctest.c
1 #include <stdio.h>
2 #include <stdint.h>
3
4 typedef union TestUnion {
5     uint64_t bits;
6 } TestUnion;
7
8 uint64_t give_back(TestUnion tu) {
9     return tu.bits;
10 }