http://d.puremagic.com/issues/show_bug.cgi?id=7619
Summary: Broken deprecated feature with template function
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]> 2012-03-01 06:00:00 PST ---
I think following code should compile with and without -d switch.
test.d
----
void main(){}
void foo(T)(T t){} // line 3
deprecated struct S{}
deprecated void test()
{
S s;
foo(s); // line 10
// foo is instantiated with deprecated struct S.
}
command line
----
dmd -run test.d
output:
----
test.d(3): Error: struct test.S is deprecated
test.d(10): Error: template instance test.foo!(S) error instantiating
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------