http://d.puremagic.com/issues/show_bug.cgi?id=10526
Summary: opDispatch with IFTI should not disable UFCS
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Kenji Hara <[email protected]> 2013-07-02 19:27:17 PDT ---
From: http://forum.dlang.org/post/[email protected]
In following code, opDispatch call requires IFTI due to TemplateTupleParameter
T deduction. However it unexpectedly disables UFCS.
import std.conv, std.stdio, std.algorithm;
struct S
{
void opDispatch(string s, T...)(T t)
if (s.startsWith("foo"))
{
writeln(s);
}
}
void main()
{
S s;
s.foo();
// --> OK
auto p = s.to!string();
// --> Error: s.opDispatch!("to") isn't a template
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------