https://d.puremagic.com/issues/show_bug.cgi?id=11922
Summary: ICE on nonexistent identifier in templated auto method
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: ice
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Vladimir Panteleev <[email protected]> 2014-01-14
01:49:52 EET ---
struct S
{
auto f(B)(B) { return a; }
}
void main()
{
S s;
s.f(5);
}
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------