blob: 75103e200fb30f7df7f79076ce8d851b9e58737d [file] [log] [blame]
subroutine test1
type t
sequence
character(8) c
end type t
type(t) :: tc, td
equivalence (tc, td)
tc%c='abcdefgh'
if (tc%c.ne.'abcdefgh'.or.td%c(1:1).ne.'a') call abort
end subroutine test1
program main
call test1
end program main