Thread overview | |||||||
---|---|---|---|---|---|---|---|
|
August 12, 2013 [Issue 10811] New: Order dependent IFTI failure | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10811 Summary: Order dependent IFTI failure Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: k.hara.pg@gmail.com --- Comment #0 from Kenji Hara <k.hara.pg@gmail.com> 2013-08-12 13:17:13 PDT --- With both version = ng and ok, the code should be compiled successfully. version (ng) { void foo(R1, R2)(R1 r1, R2 r2) {} template foo(alias pred) { void foo(R1, R2)(R1 r1, R2 r2) {} } } version (ok) { template foo(alias pred) { void foo(R1, R2)(R1 r1, R2 r2) {} } void foo(R1, R2)(R1 r1, R2 r2) {} } void main() { foo(1, 2); foo!(a => a)(1, 2); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 13, 2013 [Issue 10811] Order dependent IFTI failure | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10811 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-08-12 23:10:59 PDT --- https://github.com/D-Programming-Language/dmd/pull/2472 https://github.com/D-Programming-Language/phobos/pull/1473 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 13, 2013 [Issue 10811] Order dependent IFTI failure | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10811 --- Comment #2 from github-bugzilla@puremagic.com 2013-08-13 02:34:14 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/bf9676b0cf75c2e16c2f485e06eefd3fd0ee234b Remove conflict template function By fixing bug 10811, both toUTFz template functions will conflict on the call `toUTFz!(T)(str)`. Remove one to resolve ambiguity. https://github.com/D-Programming-Language/phobos/commit/82085781b0b18b4a799f0727e80aadb41b3369d5 Merge pull request #1473 from 9rnsr/fix10811 Supplemental fix for issue 10811 - Remove conflict template function -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 16, 2013 [Issue 10811] Order dependent IFTI failure | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10811 --- Comment #3 from github-bugzilla@puremagic.com 2013-08-15 23:23:44 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/0cefbdccbc755415fb31966b17973c51fc707610 fix Issue 10811 - Order dependent IFTI failure https://github.com/D-Programming-Language/dmd/commit/a5c9b9ae4c25aea71153f162ed7026f561061e28 Merge pull request #2472 from 9rnsr/fix10811 Issue 10811 - Order dependent IFTI failure -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 16, 2013 [Issue 10811] Order dependent IFTI failure | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kenji Hara | http://d.puremagic.com/issues/show_bug.cgi?id=10811 Walter Bright <bugzilla@digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla@digitalmars.com Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation