Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
libphobos
/
testsuite
/
libphobos.init_fini
/
runtime_args.d
blob: 07ebae2582f107802ba6d69ecb7553864e0fa837 [
file
] [
log
] [
blame
]
// 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
()
{
}