blob: bb0f895189982bc9f6a54ed7d0b91417974d8da8 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %f18
! Check that computed goto express must be a scalar integer expression
! TODO: PGI, for example, accepts a float & converts the value to int.
REAL R
COMPLEX Z
LOGICAL L
INTEGER, DIMENSION (2) :: B
!ERROR: Must have INTEGER type, but is REAL(4)
GOTO (100) 1.5
!ERROR: Must have INTEGER type, but is LOGICAL(4)
GOTO (100) .TRUE.
!ERROR: Must have INTEGER type, but is REAL(4)
GOTO (100) R
!ERROR: Must have INTEGER type, but is COMPLEX(4)
GOTO (100) Z
!ERROR: Must be a scalar value, but is a rank-1 array
GOTO (100) B
100 CONTINUE
END