http://d.puremagic.com/issues/show_bug.cgi?id=6275
Summary: Const values in tuples
Product: D
Version: D2
Platform: x86
OS/Version: Windows
Status: NEW
Keywords: rejects-valid
Severity: major
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2011-07-08 18:09:16 PDT ---
I think the need to put const values inside tuples is very common:
import std.typecons;
void main() {
const int x = 1;
auto t1 = tuple(x);
alias Tuple!(const(int)) T;
auto t2 = T(1);
}
In DMD 2.054beta this gives:
...\dmd\src\phobos\std\typecons.d(666): Error: can only initialize const member
_field_field_0 inside constructor
test.d(4): Error: template instance std.typecons.tuple!(const(int)) error
instantiating
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------