http://d.puremagic.com/issues/show_bug.cgi?id=11173
Summary: `public` alias to an instantiation of `private`
template doesn't work
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 Denis Shelomovskij <[email protected]> 2013-10-05
13:36:15 MSD ---
b.d:
---
private void f(T)() { }
alias fi = f!int;
---
main.d:
---
import b;
void main()
{ fi(); } // Error: function b.f!int.f is not accessible from module main
---
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------