modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / initialization_7.f90
blob6a10075c5c58eb8ae1f0faee75989a86b73fc995
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 "Assumed-shape array" }
10 integer :: nix
12 nix = nx
13 end subroutine