mirror of
https://github.com/bitwiseworks/gcc-os2.git
synced 2026-07-09 02:06:52 +00:00
Source URL: git://gcc.gnu.org/git/gcc.git Source Commit: 3e7b85061947bdc7c7465743ba90734566860821
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()
|
|
{
|
|
}
|