DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / tests / run-make / static-extern-type / define-foo.c
1234567891011
#include <stdint.h> struct Foo { uint8_t x; }; struct Foo FOO = { 42 }; uint8_t bar(const struct Foo* foo) { return foo->x; }