aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/elemental_args_check_4.f90
blob: 2c50f58de2d9db1e88a1866b302714ca32533fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do compile }
!
! PR 50547: dummy procedure argument of PURE shall be PURE
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

elemental function fun (sub)
  interface
    pure subroutine sub  ! { dg-error "not allowed in elemental procedure" }
    end subroutine
  end interface
end function