Lines Matching defs:test
27 subroutine test(out, optional) subroutine
29 type(t(foo())) :: x1
30 integer :: local
32 type(t(local)) :: x2
34 type(t(internal(0))) :: x3
35 integer, intent(out) :: out
37 type(t(out)) :: x4
38 integer, intent(in), optional :: optional
40 type(t(optional)) :: x5
42 type(t(hasProcArg())) :: x6
44 type(t(coarray[1])) :: x7
45 type(t(kind(foo()))) :: x101 ! ok
46 type(t(modulefunc1(0))) :: x102 ! ok
47 type(t(modulefunc2(0))) :: x103 ! ok
49 pure integer function internal(n)