# HG changeset patch # User Christian Kamm # Date 1220972038 -7200 # Node ID 8b9d4d2f925a72c4ec343488da9d84fe7a17c88a # Parent 9bd08b3d5299b37555f58896fb8d10d0d4d94b27 Fix typos in complex tests. See D bug 614. diff -r 9bd08b3d5299 -r 8b9d4d2f925a compile/c/cdouble_12_B.d --- a/compile/c/cdouble_12_B.d Tue Sep 09 16:42:11 2008 +0200 +++ b/compile/c/cdouble_12_B.d Tue Sep 09 16:53:58 2008 +0200 @@ -19,7 +19,7 @@ template getImaginaryPart(cdouble x){ - const double getImanginaryPart = x.im; + const double getImaginaryPart = x.im; } static assert(getImaginaryPart!(a) == 2.0); diff -r 9bd08b3d5299 -r 8b9d4d2f925a compile/c/cfloat_12_B.d --- a/compile/c/cfloat_12_B.d Tue Sep 09 16:42:11 2008 +0200 +++ b/compile/c/cfloat_12_B.d Tue Sep 09 16:53:58 2008 +0200 @@ -19,7 +19,7 @@ template getImaginaryPart(cfloat x){ - const float getImanginaryPart = x.im; + const float getImaginaryPart = x.im; } static assert(getImaginaryPart!(a) == 2.0f); diff -r 9bd08b3d5299 -r 8b9d4d2f925a compile/c/creal_37_B.d --- a/compile/c/creal_37_B.d Tue Sep 09 16:42:11 2008 +0200 +++ b/compile/c/creal_37_B.d Tue Sep 09 16:53:58 2008 +0200 @@ -19,7 +19,7 @@ template getImaginaryPart(creal x){ - const real getImanginaryPart = x.im; + const real getImaginaryPart = x.im; } static assert(getImaginaryPart!(a) == 2.0L);