Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / equiv_3.f90
blob75103e200fb30f7df7f79076ce8d851b9e58737d
1 subroutine test1
2 type t
3 sequence
4 character(8) c
5 end type t
6 type(t) :: tc, td
7 equivalence (tc, td)
8 tc%c='abcdefgh'
9 if (tc%c.ne.'abcdefgh'.or.td%c(1:1).ne.'a') call abort
10 end subroutine test1
11 program main
12 call test1
13 end program main