[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / proc_decl_28.f90
blobb3a557b1494497fde75c67179fa80aaf427e4afd
1 ! { dg-do compile }
3 ! PR 53956: [F03] PROCEDURE w/ interface: Bogus "EXTERNAL attribute conflicts with FUNCTION attribute"
5 ! Contributed by James van Buskirk
7 interface
8 subroutine sub (a)
9 integer, external :: a
10 end subroutine
11 end interface
13 procedure(sub) :: proc
15 end