http://d.puremagic.com/issues/show_bug.cgi?id=1607
------- Comment #1 from pop.atry at gmail.com 2007-10-23 01:59 -------
module test;
void foo(int n, ...) {
TypeInfo[] arguments = _arguments;
void* args = _argptr; // this line causes crash.
}
void main() {
foo(1,4,5);
}
--