mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
214 B
D
16 lines
214 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -unittest
|
|
|
|
version(none)
|
|
{}
|
|
else
|
|
{
|
|
unittest { }
|
|
unittest { }
|
|
unittest { }
|
|
}
|
|
|
|
void main()
|
|
{
|
|
static assert(__traits(getUnitTests, mixin(__MODULE__)).length == 3);
|
|
}
|