https://d.puremagic.com/issues/show_bug.cgi?id=7904
Kenji Hara <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from Kenji Hara <[email protected]> 2013-11-24 04:18:38 PST --- This is invalid issue. in std_algorithm.d: > dchar front(A)(A) { } > uint startsWith()() { } should be: dchar front(A)(A) { return 'a'; } uint startsWith()() { return 1; } After the fix, the sample code compiles normally. -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
