www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 614] New: Real and imaginary properties of complex numbers not allowed as template arguments

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=614

           Summary: Real and imaginary properties of complex numbers not
                    allowed as template arguments
           Product: D
           Version: 0.175
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla digitalmars.com
        ReportedBy: sean f4.ca


DMD generates an error if I use the '.re' or '.im' properties in a template
call, but works if I extract this value into a constant and pass the constant
to the template instead:


C:\>type test.d
version( A )
{
    template Eval( real x )
    {
        const Eval = x;
    }

    template GetReal( creal x )
    {
        const GetReal = Eval!( x.re );
    }

    mixin GetReal!( 1.0 + 2.0i );
}
version( B )
{
    template Eval( real x )
    {
        const Eval = x;
    }

    template GetReal( creal x )
    {
        const t = x.re;
        const GetReal = Eval!( t );
    }

    mixin GetReal!( 1.0 + 2.0i );
}


C:\>dmd -c test.d -version=A
test.d(10): Error: no property 're' for type 'creal'
test.d(10): variable test.GetReal!((1+2i)).GetReal voids have no value


C:\>dmd -c test.d -version=B

C:\>


-- 
Nov 27 2006
next sibling parent Thomas Kuehne <thomas-dloop kuehne.cn> writes:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

d-bugmail puremagic.com schrieb am 2006-11-27:
 http://d.puremagic.com/issues/show_bug.cgi?id=614
 DMD generates an error if I use the '.re' or '.im' properties in a template
 call, but works if I extract this value into a constant and pass the constant
 to the template instead:
<snip> Added to DStress as http://dstress.kuehne.cn/compile/c/cdouble_12_A.d http://dstress.kuehne.cn/compile/c/cdouble_12_B.d http://dstress.kuehne.cn/compile/c/cfloat_12_A.d http://dstress.kuehne.cn/compile/c/cfloat_12_B.d http://dstress.kuehne.cn/compile/c/creal_37_A.d http://dstress.kuehne.cn/compile/c/creal_37_B.d Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFFbgMVLK5blCcjpWoRAutQAJ4tBTwtGy4ebndVZSCn5UZ1ehE8ogCgnNVH Vv8iSUmW/2aHFLii9dF/77w= =5LlM -----END PGP SIGNATURE-----
Nov 29 2006
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=614


davidl 126.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED





dstress test cases get typos.

This bug is already fixed.
for partially typos related to this bug

Index: compile/c/creal_37_B.d
===================================================================
--- compile/c/creal_37_B.d      (revision 1832)
+++ compile/c/creal_37_B.d      (working copy)
   -19,7 +19,7   


 template getImaginaryPart(creal x){
-       const real getImanginaryPart = x.im;
+       const real getImaginaryPart = x.im;
 }

 static assert(getImaginaryPart!(a) == 2.0L);
Index: compile/c/cfloat_12_B.d
===================================================================
--- compile/c/cfloat_12_B.d     (revision 1832)
+++ compile/c/cfloat_12_B.d     (working copy)
   -19,7 +19,7   


 template getImaginaryPart(cfloat x){
-       const float getImanginaryPart = x.im;
+       const float getImaginaryPart = x.im;
 }

 static assert(getImaginaryPart!(a) == 2.0f);
Index: compile/c/cdouble_12_B.d
===================================================================
--- compile/c/cdouble_12_B.d    (revision 1832)
+++ compile/c/cdouble_12_B.d    (working copy)
   -19,7 +19,7   


 template getImaginaryPart(cdouble x){
-       const double getImanginaryPart = x.im;
+       const double getImaginaryPart = x.im;
 }

 static assert(getImaginaryPart!(a) == 2.0);


-- 
Jun 24 2008
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=614


braddr puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
          Component|DMD                         |dstress
         Resolution|FIXED                       |





Reopening and moving to the dstress component until dstress tests have been
fixed.


-- 
Jun 24 2008
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=614


braddr puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|bugzilla digitalmars.com    |thomas-dloop kuehne.cn
             Status|REOPENED                    |NEW




-- 
Jun 24 2008
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=614


kamm-removethis incasoftware.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED





-------
Fixed in dsource-dstress rev 1597


-- 
Sep 09 2008