DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / 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; }