5 ! The trans-*.c part of the compiler did no know
6 ! that mvbits is an elemental function.
8 ! Test case contributed by P.H. Lundow.
12 integer :: a( 2 ), b( 2 )
20 call mvbits (a
, 0, 1, b
, 1)
21 call mvbits (x
, 0, 1, y
, 1)
23 ! write (*, *) 'a: ', a
24 ! write (*, *) 'x: ', x
26 ! write (*, *) 'b: ', b
27 ! write (*, *) 'y: ', y
30 if ( any (b
/= y
) ) call abort()