https://d.puremagic.com/issues/show_bug.cgi?id=12111
--- Comment #1 from Nick Sabalausky <[email protected]> 2014-02-08 13:22:53 PST --- Workaround: ------------------------------ module a; import b; alias foo = b.foo; void foo(T)(T t) if(is(T==char)) {} void foo(T)(T t) if(is(T==int)) { b.foo(t); } // Workaround for #12111 void main() { foo(1); } ------------------------------ module b; void foo(T)(T t) if(is(T==int)) {} ------------------------------ -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
