RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / eoshift_7.f90
blobfbd017e17743411da5acaadae67c0ddbd6deca0d
1 ! { dg-do compile }
2 program main
3 type t
4 integer :: x
5 end type t
6 type(t), dimension(2) :: a, b
7 a(1)%x = 1
8 a(2)%x = 2
9 b = eoshift(a,1) ! { dg-error "Missing 'boundary' argument to 'eoshift' intrinsic" }
10 print *,b%x
11 end program main