ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.test/runnable/test38.d

14 lines
218 B
D
Raw Normal View History

2024-04-01 15:19:46 +00:00
// COMPILE_SEPARATELY
// EXTRA_SOURCES: imports/test38a.d
// PERMUTE_ARGS:
import std.stdio;
import imports.test38a;
void main()
{
static b = bar(7);
printf("b = %d, %d\n", b, bar(7));
assert(b == 49);
}