mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
298 B
D
14 lines
298 B
D
// EXTRA_SOURCES: imports/a20a.d
|
|
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -cov
|
|
// POST_SCRIPT: runnable/extra-files/coverage-postscript.sh
|
|
// EXECUTE_ARGS: ${RESULTS_DIR}/runnable
|
|
|
|
import a20a;
|
|
|
|
extern(C) void dmd_coverDestPath(string path);
|
|
|
|
void main(string[] args)
|
|
{
|
|
dmd_coverDestPath(args[1]);
|
|
}
|