https://d.puremagic.com/issues/show_bug.cgi?id=12297
Summary: std.typecons.Proxy does not properly forward IFTI
calls
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Vladimir Panteleev <[email protected]> 2014-03-04
16:08:06 EET ---
//////////// test.d ////////////
import std.typecons;
struct S
{
void fun(Args...)(Args args)
{
}
}
struct Test
{
S s;
mixin Proxy!s;
}
void test()
{
Test test;
test.fun(4);
}
////////////////////////////////
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------