Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/intrinsic_actual_4.f90 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 ! Tests the fix for PR27900, in which an ICE would be caused because | |
3 ! the actual argument LEN had no type. | |
4 ! | |
5 ! Contributed by Klaus Ramstöck <klra67@freenet.de> | |
6 ! | |
7 subroutine sub (proc, chr) | |
8 external proc | |
9 integer proc | |
10 character*(*) chr | |
131 | 11 if (proc (chr) .ne. 6) STOP 1 |
111 | 12 end subroutine sub |
13 | |
14 implicit none | |
15 integer i | |
131 | 16 intrinsic len |
111 | 17 i = len ("123") |
18 call sub (len, "abcdef") | |
19 end |