1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! Test resolution of type-bound generics.
7 procedure
, pass(x
) :: add1
=> add
8 procedure
, nopass
:: add2
=> add
10 generic
:: g
=> add1
, add2
, add_real
13 integer function add(x
, y
)
14 class(t
), intent(in
) :: x
, y
16 integer function add_real(x
, y
)
17 class(t
), intent(in
) :: x
20 subroutine test1(x
, y
, z
)
24 !ERROR: No specific function of generic 'g' matches the actual arguments
27 subroutine test2(x
, y
, z
)
31 !ERROR: No specific function of generic 'g' matches the actual arguments