URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [automatic_char_len_2.f90] - Rev 816
Compare with Previous | Blame | View Log
! { dg-do run }
! { dg-options "-O0" }
!
! Tests fix for PR21459 - This is the original example.
!
program format_string
implicit none
character(len=*), parameter :: rform='(F15.5)', &
cform="(' (', F15.5, ',' F15.5, ') ')"
call print_a_number(cform)
contains
subroutine print_a_number(style)
character(len=*) :: style
write(*, style) cmplx(42.0, 99.0) ! { dg-output "99.00000" }
end subroutine print_a_number
end program format_string