Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/proc_decl_5.f90 @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 84e7813d76e9 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 ! PR fortran/33945 | |
3 ! | |
4 ! PROCEDURE in the interface was wrongly rejected | |
5 module modproc | |
6 implicit none | |
7 interface bar | |
8 procedure x | |
9 end interface bar | |
10 procedure(sub) :: x | |
11 interface | |
12 integer function sub() | |
13 end function sub | |
14 end interface | |
15 end module modproc | |
16 | |
17 integer function x() | |
18 implicit none | |
19 x = -5 | |
20 end function x | |
21 | |
22 program test | |
23 use modproc | |
24 implicit none | |
131 | 25 if(x() /= -5) STOP 1 |
111 | 26 end program test |