http://d.puremagic.com/issues/show_bug.cgi?id=9967
Summary: ParameterIdentifierTuple broken for setters
Product: D
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Dicebot <[email protected]> 2013-04-20 03:45:38 PDT ---
http://dpaste.1azy.net/c246a5c7
---
import std.traits;
interface Test
{
@property void setter(int x);
}
pragma(msg, ParameterIdentifierTuple!(Test.setter));
void main()
{
}
---
Compilation output:
tuple("")
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------