dmd/compiler/test/runnable/test22974.c
2022-07-09 18:53:07 +02:00

12 lines
189 B
C

// EXTRA_SOURCES: imports/test22974b.c
/* https://issues.dlang.org/show_bug.cgi?id=22974
*/
int main()
{
extern int ccc();
extern int xxx;
xxx = ccc();
return xxx - 1;
}