Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gfortran.dg / initialization_7.f90
blob8615181965d6a3aadd80656d16ef1c3983bae8c7
1 ! { dg-do compile }
3 ! PR fortran/31253 -- ICE on invlid initialization expression
4 ! Contributed by: Mikael Morin <mikael DOT morin AT tele2 DOT fr>
7 subroutine probleme(p)
8 real(kind=8), dimension(:) :: p
9 integer :: nx = size(p, 1) ! { dg-error "Deferred array" }
10 integer :: nix
12 nix = nx
13 end subroutine