PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / func_decl_3.f90
blob4e458f47d88e8120e9ad1fcbb6431d4b0549440d
1 ! { dg-do compile }
2 ! Tests the fix for PR24325 in which the lack of any declaration
3 ! that foo is a function or even a procedure was not detected.
5 ! Contributed by Jakub Jelinek <jakub@gcc.gnu.org>
7 integer foo
8 call test
9 contains
10 subroutine test
11 integer :: i
12 i = foo () ! { dg-error "is not a function" }
13 end subroutine test
14 end