[Issue 9983] New: inout type can not be used as a parameter for structure template
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Apr 23 06:57:30 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9983
Summary: inout type can not be used as a parameter for
structure template
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: maximzms at gmail.com
--- Comment #0 from Maksim Zholudev <maximzms at gmail.com> 2013-04-23 06:57:29 PDT ---
In the following code `inout(int)` is passed to template while it should be
replaced with `int` or `const(int)` depending on the function argument
qualifiers.
--------------------
struct Foo(T)
{
T* p; // test.d(3)
this(T* src) { p = src; }
}
auto f(inout int[] a)
{
return Foo!(inout(int))(a.ptr); // test.d(10)
}
void main() {}
--------------------
test.d(3): Error: variable test.Foo!(inout(int)).Foo.p only parameters or stack
based variables can be inout
test.d(10): Error: template instance test.Foo!(inout(int)) error instantiating
test.d(10): Error: function expected before (), not _error_ of type _error_
--------------------
Workaround:
--------------------
struct Foo(T)
{
T* p;
this(T* src) { p = src; }
}
auto f(int[] a)
{
return Foo!(int)(a.ptr);
}
auto f(in int[] a)
{
return Foo!(const(int))(a.ptr);
}
void main() {}
--------------------
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list