Revision d432821e0b869cae47e59d2541eee1243ee75630 authored by Simeon Schaub on 20 October 2023, 00:16:42 UTC, committed by GitHub on 20 October 2023, 00:16:42 UTC
Should fix the failures observed in JuliaLang/BugReporting.jl#141. Test
for this is in #51776 which depends on afromentioned PR which depends on
this fix.
1 parent cd82984
Raw File
ccalllazybar.c
// This file is a part of Julia. License is MIT: https://julialang.org/license

#include "ccalltest_common.h"

// We expect this to come from `libccalllazyfoo`
extern int foo(int);

DLLEXPORT int bar(int a) {
    return foo(a + 1);
}
back to top