1 ! RUN: %python %S/test_modfile.py %s %flang_fc1
2 ! modfile with subprograms
9 pure
subroutine Ss(x
, y
) bind(c
)
15 real function f1() result(x
)
28 type(t
) function f3(x
)
30 integer, parameter :: a
= 2
32 integer, kind
:: b
= a
37 function f4() result(x
)
42 ! Module with a subroutine with alternate returns
45 subroutine altReturn(arg1
, arg2
, *, *)
56 !pure subroutine ss(x,y) bind(c)
57 !logical(4),intent(in)::x
58 !real(4),intent(inout)::y
60 !function f1() result(x)
75 ! integer(4),kind::b=2_4
81 !function f4() result(x)
89 !subroutine altreturn(arg1,arg2,*,*)