blob: b0cbd5f80a96432b19677f801d31659401800cfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
! { dg-do compile }
! { dg-options "-fcoarray=single" }
!
! PR fortran/18918
!
! The example was ICEing before as the tree-decl
! of the type was wrong.
!
subroutine test
complex, save :: z[*]
if (z /= cmplx (0.0, 0.0)) STOP 1
end subroutine test
|