OSDN Git Service

gcc/fortran/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / spec_expr_2.f90
1 ! { dg-do compile }
2 ! PR 22273: Allow INTENT(OUT) dummy:s as arguments to LEN() in specification
3 ! expr:s
4 subroutine lecligne (ligne)
5     character(len=*), intent(out) :: ligne
6     character(len=len(ligne)) :: comment
7 end subroutine lecligne