mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:50:51 +08:00
re PR fortran/20846 (inquire(FILE=..., UNIT=...) not flagged as error)
PR fortran/20846 * gfortran.dg/inquire_8.f90: New test. From-SVN: r100339
This commit is contained in:
parent
44998b6526
commit
36eb88745d
@ -1,3 +1,8 @@
|
||||
2005-05-30 Steven G. Kargl
|
||||
|
||||
PR fortran/20846
|
||||
* gfortran.dg/inquire_8.f90: New test.
|
||||
|
||||
2005-05-29 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
||||
|
||||
PR libfortran/21376
|
||||
|
10
gcc/testsuite/gfortran.dg/inquire_8.f90
Normal file
10
gcc/testsuite/gfortran.dg/inquire_8.f90
Normal file
@ -0,0 +1,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
|
Loading…
x
Reference in New Issue
Block a user