rustc/tests/run-make/native-lib-load-order/b.c
2024-10-21 11:08:01 +02:00

6 lines
48 B
C

extern void a(void);
void b(void) {
a();
}