Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/proc_decl_20.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do compile } |
2 ! | |
3 ! PR fortran/36463 | |
4 ! Gfortran used to fail on this testcase with: | |
5 ! gfc_get_default_type(): Bad symbol '@0' | |
6 ! | |
7 ! Original program by James Van Buskirk | |
8 ! Reduced by Janus Weil <janus@gcc.gnu.org> | |
9 | |
10 module other_fun | |
11 interface | |
12 function abstract_fun(x) | |
13 integer x | |
14 integer abstract_fun(x) | |
15 end function abstract_fun | |
16 end interface | |
17 end module other_fun | |
18 | |
19 program fptr | |
20 use other_fun | |
21 procedure(abstract_fun) :: fun | |
22 end program fptr |