2 ! PR 96073 - this used to cause an ICE.
3 ! Test case by Jürgen Reuter.
10 subroutine GetXminM (set
, xmin
)
11 integer, intent(in
) :: set
12 real, intent(out
) :: xmin
13 end subroutine GetXminM
16 subroutine foo(a
) ! { dg-warning "Type mismatch" }
17 integer, intent(in
) :: a
26 external :: GetXminM
, foo
27 call GetXminM (set
, xmin
)
28 call foo(1.0) ! { dg-warning "Type mismatch" }