URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [complex_intrinsic_2.f90] - Rev 694
Compare with Previous | Blame | View Log
! Testcase for the COMPLEX intrinsic
! { dg-do compile }
complex c
c = complex(.true.,1.0) ! { dg-error "must be INTEGER or REAL" }
c = complex(1) ! { dg-error "Missing actual argument" }
c = complex(1,c) ! { dg-error "must be INTEGER or REAL" }
end