mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
189 B
C
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;
|
|
}
|