Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gfortran.dg / proc_ptr_result_4.f90
blob97e67e558efc8f756ccebe3557622e85fc21a08a
1 ! { dg-do compile }
3 ! PR 40451: [F03] procedure pointer assignment rejected
5 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
7 contains
9 function f()
10 intrinsic :: sin
11 procedure(sin), pointer :: f
12 f => sin
13 end function f
15 end