aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gfortran.dg/optional_assumed_charlen_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gfortran.dg/optional_assumed_charlen_1.f90')
-rw-r--r--gcc-4.8/gcc/testsuite/gfortran.dg/optional_assumed_charlen_1.f9019
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc-4.8/gcc/testsuite/gfortran.dg/optional_assumed_charlen_1.f90 b/gcc-4.8/gcc/testsuite/gfortran.dg/optional_assumed_charlen_1.f90
new file mode 100644
index 000000000..5c929e8ae
--- /dev/null
+++ b/gcc-4.8/gcc/testsuite/gfortran.dg/optional_assumed_charlen_1.f90
@@ -0,0 +1,19 @@
+! { dg-do compile }
+! Tests the fix for PR29284 in which an ICE would occur in converting
+! the call to a suboutine with an assumed character length, optional
+! dummy that is not present.
+!
+! Contributed by Rakuen Himawari <rakuen_himawari@yahoo.co.jp>
+!
+ MODULE foo
+ CONTAINS
+ SUBROUTINE sub1(a)
+ CHARACTER (LEN=*), OPTIONAL :: a
+ WRITE(*,*) 'foo bar'
+ END SUBROUTINE sub1
+
+ SUBROUTINE sub2
+ CALL sub1()
+ END SUBROUTINE sub2
+
+ END MODULE foo