aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/proc_decl_28.f90
blob: b3a557b1494497fde75c67179fa80aaf427e4afd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
!
! PR 53956: [F03] PROCEDURE w/ interface: Bogus "EXTERNAL attribute conflicts with FUNCTION attribute"
!
! Contributed by James van Buskirk

  interface
    subroutine sub (a)       
      integer, external :: a
    end subroutine
  end interface

  procedure(sub) :: proc

end