https://issues.dlang.org/show_bug.cgi?id=19937
--- Comment #3 from Seb <[email protected]> --- BTW a workaround is to do force the instantiation e.g. with the following hack: ``` cat << EOF > workaround.d void test(ulong x, ulong y){ assert(x < y); } EOF ``` ``` dmd -checkaction=context -c workaround.d dmd -checkaction=context workaround.o checkaction.d ``` --
