aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/large_unit_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/large_unit_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/large_unit_1.f9017
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/large_unit_1.f90 b/gcc/testsuite/gfortran.dg/large_unit_1.f90
new file mode 100644
index 00000000000..60e2d1f17e8
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/large_unit_1.f90
@@ -0,0 +1,17 @@
+! { dg-do run }
+! { dg-shouldfail "Unit number in I/O statement too large" }
+! PR31201 Unit number in I/O statement too large
+! Test case from PR
+ integer(kind=8) :: k= 2_8**36 + 10
+ integer(kind=4) :: j= 10
+ logical ex,op
+ INQUIRE(unit=k, exist=ex,opened=op)
+ print *, ex, op
+ IF (ex) THEN
+ OPEN(unit=k)
+ INQUIRE(unit=j, opened=op)
+ IF (op) CALL ABORT()
+ ENDIF
+ print *, k
+ close(k)
+ end