https://issues.dlang.org/show_bug.cgi?id=20863
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |rg --- Comment #1 from [email protected] --- Even smaller: template staticFind(alias T, TList) { enum bool staticFind = is(T == TList); // true; } static assert(staticFind!(Object, Object)); // pass static assert(staticFind!(immutable Object, immutable Object)); // fail --
