Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/intrinsic_actual_4.f90 @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children | 84e7813d76e9 |
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 | |
11 if (proc (chr) .ne. 6) call abort () | |
12 end subroutine sub | |
13 | |
14 implicit none | |
15 integer i | |
16 i = len ("123") | |
17 call sub (len, "abcdef") | |
18 end |