aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr20257.f90
blob: 3808829b486d62a8275cea6ff5725220d32f9bc5 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do run }
  integer,parameter :: n = 10000
  real(8) array(10000)

  array(:) = 0
  open (10, status='scratch')
  write (10,*) array
  close (10)
end