Closed n8sh closed 3 years ago
As of at least ldc2 version 1.24.0 the import ldc.vararg does not exist.
ldc.vararg
Demonstration:
#!/usr/bin/env dub --single --compiler=ldc2 /+dub.sdl: dependency "tango" version="~>1.0.5+2.0.85" +/ import tango.core.Vararg; void main() { }
Trying to run the above file fails with:
.../tango/core/Vararg.d(43,19): Error: module vararg is in file 'ldc/vararg.d' which cannot be read
Fixed by #100. No release tagged since then though.
I tagged a new release.
As of at least ldc2 version 1.24.0 the import
ldc.vararg
does not exist.Demonstration:
Trying to run the above file fails with: