http://d.puremagic.com/issues/show_bug.cgi?id=6949
--- Comment #12 from [email protected] 2012-11-30 04:17:15 PST --- Regarding a comment by Don, is it possible to generate a warning/error only in foo() and not in bar()? void foo(uint x) { if (x < 0) {} // error or warning here } void bar(T)(T x) { if (x < 0) {} // OK } void main() { foo(5U); bar(5U); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
