aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/initialization_7.f90
blob: 6a10075c5c58eb8ae1f0faee75989a86b73fc995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { 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