aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/inquire_8.f90
blob: 1d30973b01df7563f19c37296a226ad0003a854d (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
! fortran/pr20846
program inquire_8
  character(len=20) :: n = 'data'
  integer :: d = 23
  logical a
  inquire(file=n,unit=d,opened=a) ! { dg-error "contain both FILE and UNIT" }
  inquire(unit=d,file=n,opened=a) ! { dg-error "contain both FILE and UNIT" }
  inquire(opened=a)               ! { dg-error "requires either FILE or UNIT" }
end program inquire_8