mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
14 lines
254 B
D
14 lines
254 B
D
// Bugzilla 11149 - Runtime.args no longer available in static constructors
|
|
import core.runtime;
|
|
|
|
shared static this()
|
|
{
|
|
assert(Runtime.cArgs.argc > 0);
|
|
assert(Runtime.cArgs.argv !is null);
|
|
assert(Runtime.args.length > 0);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|