c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / elemental_args_check_4.f90
blob2c50f58de2d9db1e88a1866b302714ca32533fe8
1 ! { dg-do compile }
3 ! PR 50547: dummy procedure argument of PURE shall be PURE
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
7 elemental function fun (sub)
8 interface
9 pure subroutine sub ! { dg-error "not allowed in elemental procedure" }
10 end subroutine
11 end interface
12 end function