/tests/bugs/holes-in-debuginfo: fix reproducer to not dies because of missing declarations

This commit is contained in:
Miloš Prchlík 2024-01-23 15:19:06 +01:00 committed by mprchlik
commit 5745d8c2cf

View file

@ -1,3 +1,6 @@
extern void k(int);
extern void l(int, int*);
void f(int i) {
k(i);
}