mirror of
https://github.com/ziglang/zig.git
synced 2024-11-29 00:22:33 +00:00
65e4725aba
Tests a scenario where the linker line has the following: ``` main.o libA.a libB.a ``` where `main.o` pulls a symbol from `libB.a`, which in turn is dependent on a symbol from `libA.a`.
3 lines
55 B
C
3 lines
55 B
C
#include <stdint.h>
|
|
int32_t add(int32_t a, int32_t b);
|