For example this code:
class Test {
unittest {
assert(false);
}
}fails when ran with dmd test.d -unittest like you'd expect. But if I make it a class template:
class Test(T) {
unittest {
assert(false);
}
}
it passes when it should fail because the unittest block is never
executed. Why is this? While googling I found this thread
http://forum.dlang.org/thread/[email protected] but surely that bug hasn't gone unfixed for 11 years...
