Limit dg-xfail-run-if for *-*-hpux11.[012]* to -O0
[official-gcc.git] / libphobos / testsuite / libphobos.init_fini / runtime_args.d
blob07ebae2582f107802ba6d69ecb7553864e0fa837
1 // Bugzilla 11149 - Runtime.args no longer available in static constructors
2 import core.runtime;
4 shared static this()
6 assert(Runtime.cArgs.argc > 0);
7 assert(Runtime.cArgs.argv !is null);
8 assert(Runtime.args.length > 0);
11 void main()