aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/auto_save_1.f90
blob: b4571d2ba844a471ba7f876678d7d84504eafa1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do run }
! Check that automatic objects work properly in the presence of a save
! statement.
! PR21034
subroutine test(n)
  implicit none
  integer n
  real dte(n)
  character(len=n) :: s
  save
  dte = 0
  s = ""
end

program prog
  call test(4)
  call test(10)
end program