mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
277 B
D
15 lines
277 B
D
// COMPILED_IMPORTS: imports/testcov1a.d imports/testcov1b.d
|
|
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -cov -Icompilable/imports
|
|
|
|
import core.stdc.string;
|
|
import testcov1a;
|
|
|
|
version(D_Coverage)
|
|
{
|
|
// Good
|
|
}
|
|
else
|
|
{
|
|
static assert(0, "Missing 'D_Coverage' version identifier");
|
|
}
|