REF: JVB GFTN-007
File: gfortran_bug7.f90
Example:
C:\gfortran_stuff\James\test\gfortran_bug7>gfortran -std=f95 gfortran_bug7.f90 -
ogfortran_bug7
 In file gfortran_bug7.f90:16

   write(*,*) aimag(x)
                   1
Error: Type of argument 'z' in call to 'aimag' at (1) should be COMPLEX(4), not
COMPLEX(8)
 In file gfortran_bug7.f90:17

   write(*,*) conjg(x)
                   1
Error: Type of argument 'z' in call to 'conjg' at (1) should be COMPLEX(4), not
COMPLEX(8)

C:\gfortran_stuff\James\test\gfortran_bug7>gfortran -v
Using built-in specs.
Configured with: ../gcc/configure --prefix=/mingw --enable-languages=c,f95
Thread model: win32
gcc version 4.0.0 20050125 (experimental)
Discussion: AIMAG and CONJG are generic.
XREF: PR18565