PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / pure_formal_proc_3.f90
blob38d4552801ad9c4a99d98c2b9d65f670ab527fe6
1 ! { dg-do compile }
3 ! PR 50547: dummy procedure argument of PURE shall be PURE
5 ! Contributed by Vittorio Zecca <zeccav@gmail.com>
7 pure function f(proc)
8 interface
9 function proc() ! { dg-error "must also be PURE" }
10 end
11 end interface
12 end