aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/unit_1.f90
blob: 5233bc870194fb642d3a1816de83f0594f66a773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
! { dg-do run }
! PR40638 Run Time Error: Unit number in I/O statement too large
      program main
      integer(kind=2) ::  lun, anum
      integer(kind=1) ::  looney, bin
      lun  = 12
      anum = 5
      looney = 42
      bin = 23
      open (lun, status='scratch')
      write(lun,*) anum
      anum = 0
      rewind(lun)
      read (lun, *) anum
      if (anum.ne.5) call abort
      open (looney, status='scratch')
      write(looney,*)bin
      bin = 0
      rewind (looney)
      read (looney,*)bin
      if (bin.ne.23) call abort
      close (lun)
      close (looney)
      end