https://issues.dlang.org/show_bug.cgi?id=12411
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #1 from Andrej Mitrovic <[email protected]> --- Can just use this now: ----- enum isEqual(T1, T2) = is(T1 == T2); void main() { alias isInt = isEqual!int; static assert(isInt!int); } ----- It works fine. --
