(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
initialization_7.f90
! { dg-do compile }
!
! PR fortran/31253 -- ICE on invlid initialization expression
! Contributed by: Mikael Morin <mikael DOT morin AT tele2 DOT fr>
!

subroutine probleme(p)
  real(kind=8), dimension(:) :: p
  integer :: nx = size(p, 1)          ! { dg-error "Assumed-shape array" }
  integer :: nix

  nix = nx
end subroutine