2 ! PR43214 - implementation of class arrays
4 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
10 procedure, pass :: foo => foo
13 elemental subroutine foo(x, i)
14 class(t),intent(in) :: x
15 integer,intent(inout) :: i
22 integer :: n(3) = [0,100,200]
24 if (any(n .ne. [99,199,299])) STOP 1