URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [char_length_10.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! Checks the fix for PR33241, in which the assumed character! length of the parameter was never filled in with that of! the initializer.!! Contributed by Victor Prosolin <victor.prosolin@gmail.com>!PROGRAM fptestIMPLICIT NONECHARACTER (LEN=*), DIMENSION(1), PARAMETER :: var = 'a'CALL parsef (var)containsSUBROUTINE parsef (Var)IMPLICIT NONECHARACTER (LEN=*), DIMENSION(:), INTENT(in) :: VarEND SUBROUTINE parsefEND PROGRAM fptest
